mirror of
https://github.com/xuxiaobo-bobo/boda_jsEnv.git
synced 2025-04-22 23:44:23 +08:00
18 lines
393 B
Plaintext
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};
|