Swap-Aggregator-Subgraph/node_modules/sync-request/lib/FormData.js.flow
Richa-iitr d211083153 Revert "Revert "added handler""
This reverts commit c36ee8c5ca.
2022-07-03 07:30:05 +05:30

18 lines
393 B
Plaintext

// @flow
// Generated using flowgen2
interface FormDataEntry {
key: string;
value: string | Blob | Buffer;
fileName?: string;
}
export type {FormDataEntry};
declare class FormData {
append(key: string, value: string | Blob | Buffer, fileName?: string): void;
}
export {FormData};
declare function getFormDataEntries(fd: FormData): Array<FormDataEntry>;
export {getFormDataEntries};