@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
TypeScript
import type { CollectionGraphLinks, CollectionGraphProps } from '../../core/defaults';
import type { Graph } from '../../core';
import type { Webhook } from './webhook';
export interface Webhooks extends Graph {
curie: 'fx:webhooks';
links: CollectionGraphLinks<Webhooks>;
props: CollectionGraphProps;
child: Webhook;
}