UNPKG

use-shopify

Version:

React hooks to work with Shopify's Storefront API

14 lines (13 loc) 255 B
interface Edge<T> { cursor: string | number; node: T; } export interface PageInfo { hasNextPage: boolean; hasPrevPage: boolean; } export interface Paginated<T> { pageInfo: PageInfo; edges: Array<Edge<T>>; } export {};