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) 323 B
import type { CollectionGraphLinks, CollectionGraphProps } from '../../core/defaults'; import type { Coupon } from './coupon'; import type { Graph } from '../../core'; export interface Coupons extends Graph { curie: 'fx:coupons'; links: CollectionGraphLinks<Coupons>; props: CollectionGraphProps; child: Coupon; }