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) 308 B
import type { CollectionGraphLinks, CollectionGraphProps } from '../../core/defaults'; import type { Graph } from '../../core'; import type { Tax } from './tax'; export interface Taxes extends Graph { curie: 'fx:taxes'; links: CollectionGraphLinks<Taxes>; props: CollectionGraphProps; child: Tax; }