// Type definitions for form-data 2.2 // Project: https://github.com/form-data/form-data // Definitions by: Carlos Ballesteros Velasco // Leon Yu // BendingBender // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // TypeScript Version: 2.3 // Imported from: https://github.com/soywiz/typescript-node-definitions/form-data.d.ts /// import * as stream from 'stream'; import * as http from 'http'; export = FormData; declare class FormData extends stream.Readable { append(key: string, value: any, options?: FormData.AppendOptions | string): void; getHeaders(): FormData.Headers; submit(params: string | FormData.SubmitOptions, callback?: (error: Error | undefined, response: http.IncomingMessage) => void): http.ClientRequest; getBoundary(): string; getLength(callback: (err: Error | undefined, length: number) => void): void; getLengthSync(): number; hasKnownLength(): boolean; } declare namespace FormData { interface Headers { [key: string]: any; } interface AppendOptions { header?: string | Headers; knownLength?: number; filename?: string; filepath?: string; contentType?: string; } interface SubmitOptions extends http.RequestOptions { protocol?: 'https:' | 'http:'; } }