UNPKG

@foxy.io/sdk

Version:

Universal SDK for a full server-side and a limited in-browser access to Foxy hAPI.

11 lines (9 loc) 311 B
import type { CollectionGraphLinks, CollectionGraphProps } from '../../core/defaults'; import type { Cart } from './cart'; import type { Graph } from '../../core'; export interface Carts extends Graph { curie: 'fx:carts'; links: CollectionGraphLinks<Carts>; props: CollectionGraphProps; child: Cart; }