@voiceflow/base-types
Version:
Voiceflow base project types
13 lines • 371 B
TypeScript
import type { NodeType } from './constants';
import type { BaseNode, BaseStep, NodeID } from './utils';
export interface StepData {
label?: string;
}
export interface Step<Data = StepData> extends BaseStep<Data> {
type: NodeType.START;
}
export interface Node extends BaseNode {
type: NodeType.START;
nextId?: NodeID;
}
//# sourceMappingURL=start.d.ts.map