first commit
This commit is contained in:
11
grafana/dashboards/requests/node_modules/sync-request/lib/FormData.d.ts
generated
vendored
Normal file
11
grafana/dashboards/requests/node_modules/sync-request/lib/FormData.d.ts
generated
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
/// <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[];
|
||||
Reference in New Issue
Block a user