import { type Fetch } from "./builtin-types.js"; export type PromiseOrValue = T | Promise; export type HTTPMethod = 'get' | 'post' | 'put' | 'patch' | 'delete'; export type RequestClient = { fetch: Fetch; }; export type Headers = Record; export type DefaultQuery = Record; export type KeysEnum = { [P in keyof Required]: true; }; //# sourceMappingURL=types.d.ts.map