UNPKG

use-shopify

Version:

React hooks to work with Shopify's Storefront API

9 lines (8 loc) 236 B
import { Checkout } from '../../types'; export interface CheckoutFetchInput { id: string; } export interface CheckoutFetchResponse { node: Checkout; } export declare const CHECKOUT_FETCH: import("graphql").DocumentNode;