@foundatiofx/fetchclient
Version:
A typed JSON fetch client with middleware support for Deno, Node and the browser.
8 lines • 342 B
TypeScript
import type { FetchClientResponse } from "./FetchClientResponse.js";
import type { RequestOptions } from "./RequestOptions.js";
export type FetchClientContext = {
options: RequestOptions;
request: Request;
response: FetchClientResponse<unknown> | null;
} & Record<string, unknown>;
//# sourceMappingURL=FetchClientContext.d.ts.map