UNPKG

@graphql-tools/url-loader

Version:

A set of utils for faster development of GraphQL tools

7 lines (6 loc) 263 B
export declare const defaultSyncFetch: SyncFetchFn; export declare type SyncFetchFn = (input: RequestInfo, init?: RequestInit) => SyncResponse; export declare type SyncResponse = Omit<Response, 'json' | 'text'> & { json: () => any; text: () => string; };