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 { Graph } from '../../core'; import type { Item } from './item'; export interface Items extends Graph { curie: 'fx:items'; links: CollectionGraphLinks<Items>; props: CollectionGraphProps; child: Item; }