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