/*** EXPORT ------------------------------------------- ***/ export type FetcherRequest = { headers?: Record; operationName?: string | null; query: string; variables?: Record; }; export type FetcherResult = Record; export type Fetcher = (req: FetcherRequest) => Promise | AsyncIterable; export type FetcherOptions = { fetch?: typeof globalThis.fetch; headers?: Record; url: string; };