Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

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

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