Type Alias HttpRequestOptions
HttpRequestOptions: {
body?: any;
decode?: boolean;
fragment?: string;
headers?: {
[key: string | symbol]: string | null | undefined;
};
method?:
| "GET"
| "POST"
| "PATCH"
| "PUT"
| "DELETE";
query?: {
key: string;
value: string;
}[] | {
[key: string]: string;
};
url?: string;
[key: string]: any;
}