UNPKG

255 BTypeScriptView Raw
1import type { RequestMethod } from "./RequestMethod.js";
2import type { Url } from "./Url.js";
3import type { RequestParameters } from "./RequestParameters.js";
4export type EndpointOptions = RequestParameters & {
5 method: RequestMethod;
6 url: Url;
7};