mirror of
https://github.com/xuxiaobo-bobo/boda_jsEnv.git
synced 2025-04-22 23:44:23 +08:00
12 lines
353 B
TypeScript
12 lines
353 B
TypeScript
/// <reference types="node" />
|
|
export interface FormDataEntry {
|
|
key: string;
|
|
value: string | Blob | Buffer;
|
|
fileName?: string;
|
|
}
|
|
export declare class FormData {
|
|
private _entries;
|
|
append(key: string, value: string | Blob | Buffer, fileName?: string): void;
|
|
}
|
|
export declare function getFormDataEntries(fd: FormData): FormDataEntry[];
|