@voiceflow/base-types
Version:
Voiceflow base project types
12 lines • 400 B
TypeScript
import type { BaseCommand, BaseNode, Variable } from './base/index.js';
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