UNPKG

@voiceflow/base-types

Version:

Voiceflow base project types

12 lines 391 B
import type { BaseCommand, BaseNode, Variable } from './base'; export interface Model<Node extends BaseNode = BaseNode, Command extends BaseCommand = BaseCommand> { id: string; startId: string; versionID: string; diagramID: string; name?: string; lines: Record<string, Node>; commands: Command[]; variables: Variable[]; } //# sourceMappingURL=program.d.ts.map