diff --git a/form-data.d.ts b/form-data.d.ts index ae15eb1..7ff860b 100644 --- a/form-data.d.ts +++ b/form-data.d.ts @@ -1,8 +1,9 @@ -// https://github.com/felixge/node-form-data - -declare module "form-data" { +// https://github.com/felixge/node-form-data + +declare module "form-data" { export class FormData { append(key: string, value: any): FormData; getHeaders(): any; - } -} \ No newline at end of file + pipe(any): any; + } +}