microsoft/vscode-react-native

Public

mirrored fromhttps://github.com/microsoft/vscode-react-nativeAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
0.5.1

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

src/typings/form-data/form-data.d.ts

16lines · modecode

1// Type definitions for form-data
2// Project: https://github.com/felixge/node-form-data
3// Definitions by: Carlos Ballesteros Velasco <https://github.com/soywiz>
4// Definitions: https://github.com/borisyankov/DefinitelyTyped
5
6// Imported from: https://github.com/soywiz/typescript-node-definitions/form-data.d.ts
7
8declare module "form-data" {
9 export class FormData {
10 append(key: string, value: any, options?: any): FormData;
11 getHeaders(): Object;
12 // TODO expand pipe
13 pipe(to: any): any;
14 submit(params: string|Object, callback: (error: any, response: any) => void): any;
15 }
16}