export interface APIFetchOptions extends RequestInit { headers?: Record; path?: string; url?: string; /** * @default true */ parse?: Parse; data?: any; namespace?: string; endpoint?: string; } export type FetchHandler = (nextOptions: APIFetchOptions) => Promise; export type APIFetchMiddleware = (options: APIFetchOptions, next: FetchHandler) => Promise; //# sourceMappingURL=types.d.ts.map