UNPKG

@voiceflow/base-types

Version:

Voiceflow base project types

13 lines 383 B
import type { NodeType } from './constants.js'; import type { BaseNode, BaseStep, NodeID } from './utils/index.js'; 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