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 { Customer } from './customer'; import type { Graph } from '../../core'; export interface Customers extends Graph { curie: 'fx:customers'; links: CollectionGraphLinks<Customers>; props: CollectionGraphProps; child: Customer; }