xuxiaobo-bobo 842b34b5ca 0218
2024-02-18 15:40:48 +08:00

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};