frontend/.pnpm-store/v3/files/df/4f5345e327f77ac2508aeff752d1d6abdf039a3128f1f48fab63d5a54e1e376aad190cb4b8e3c905e8b30eeff997e382174d88a918169d910b7c43c9404ddc

15 lines
442 B
Plaintext

import { RequestHeaders } from "./RequestHeaders";
import { RequestMethod } from "./RequestMethod";
import { RequestRequestOptions } from "./RequestRequestOptions";
import { Url } from "./Url";
/**
* Generic request options as they are returned by the `endpoint()` method
*/
export declare type RequestOptions = {
method: RequestMethod;
url: Url;
headers: RequestHeaders;
body?: any;
request?: RequestRequestOptions;
};