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) 335 B
import type { CollectionGraphLinks, CollectionGraphProps } from '../../core/defaults'; import type { Graph } from '../../core'; import type { Shipment } from './shipment'; export interface Shipments extends Graph { curie: 'fx:shipments'; links: CollectionGraphLinks<Shipments>; props: CollectionGraphProps; child: Shipment; }