UNPKG

@prismatic-io/spectral

Version:

Utility library for building Prismatic connectors and code-native integrations

13 lines (12 loc) 273 B
export interface FlowSchema { title: string; $comment?: string; type: string; properties: Record<string, Record<string, unknown>>; } export interface FlowSchemas { [key: string]: { invoke: FlowSchema; [key: string]: FlowSchema; }; }