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) 329 B
import type { CollectionGraphLinks, CollectionGraphProps } from '../../core/defaults'; import type { Graph } from '../../core'; import type { Payment } from './payment'; export interface Payments extends Graph { curie: 'fx:payments'; links: CollectionGraphLinks<Payments>; props: CollectionGraphProps; child: Payment; }