@httpc/client
Version:
httpc client for building function-based API with minimal code and end-to-end type safety
8 lines • 335 B
TypeScript
import type * as nf from "node-fetch";
import type { default as Fetch } from "node-fetch";
declare let fetch: typeof Fetch;
declare let Headers: typeof nf.Headers;
declare let Request: typeof nf.Request;
declare let Response: typeof nf.Response;
export { fetch, Headers, Request, Response, };
//# sourceMappingURL=fetch.d.ts.map