MakeHttpCallAOptions
interface MakeHttpCallAOptions {
url: string;
method: string;
headers: Record<string, string>;
body: string | Blob | FormData;
mode: "cors" | "no-cors" | "same-origin";
}
url: string;
method: string;
headers: Record<string, string>;
body: string | Blob | FormData;
mode: "cors" | "no-cors" | "same-origin";
}
The options type for makeHttpCallA.