@foxy.io/sdk
Version:
Universal SDK for a full server-side and a limited in-browser access to Foxy hAPI.
11 lines (9 loc) • 359 B
TypeScript
import type { CollectionGraphLinks, CollectionGraphProps } from '../../core/defaults';
import type { Downloadable } from './downloadable';
import type { Graph } from '../../core';
export interface Downloadables extends Graph {
curie: 'fx:downloadables';
links: CollectionGraphLinks<Downloadables>;
props: CollectionGraphProps;
child: Downloadable;
}