FunctionInvokeOptions
type FunctionInvokeOptions = {
headers?: {};
[key: string]: string;
method?:
| "POST"
| "GET"
| "PUT"
| "PATCH"
| "DELETE";
region?: FunctionRegion;
body?:
}; | File
| Blob
| ArrayBuffer
| FormData
| ReadableStream<Uint8Array>
| Record<string, any>
| string;
§Type
§
{
[src]headers?: {};
[key: string]: string;
method?:
| "POST"
| "GET"
| "PUT"
| "PATCH"
| "DELETE";
region?: FunctionRegion;
body?:
} | File
| Blob
| ArrayBuffer
| FormData
| ReadableStream<Uint8Array>
| Record<string, any>
| string;