UNPKG

use-invariant

Version:

- <a target="_blank" rel="noopener noreferrer" href='https://codesandbox.io/s/usefetch-in-nextjs-nn9fm'>Example - Next.js</a> - <a target="_blank" rel="noopener noreferrer" href='https://codesandbox.io/embed/km04k9k9x5'>Examples - create-react-app</a>

9 lines (8 loc) 258 B
/// <reference types="react" /> declare type FetchContextTypes = { url?: string; options?: RequestInit | undefined; graphql?: boolean; }; export declare const FetchContext: import("react").Context<FetchContextTypes>; export default FetchContext;