UNPKG

@isaac-platform/isaac-integration-sdk

Version:

A Typescript SDK for integrating with ISAAC

18 lines 539 B
export interface IsaacControlPanel { subsystemExternalId: string; type: string; connection: connectionIframe | connectionMedialon | connectionISAACConnect; displayName: string; active: boolean; description?: string; externalRef?: string; } export interface IsaacIframeControlPanel extends IsaacControlPanel { connection: connectionIframe; } export type connectionIframe = { url: string; }; export type connectionMedialon = {}; export type connectionISAACConnect = {}; //# sourceMappingURL=types.d.ts.map