import type { EmptyObject, Nullable } from '@voiceflow/common'; import type { NodeType } from './constants'; import type { BaseNode, BaseStep, NodeNextID } from './utils'; export interface StepData { nodeID: Nullable; diagramID: Nullable; } export interface Step extends BaseStep { type: NodeType.GOTO_NODE; } export interface Node extends BaseNode, NodeNextID { type: NodeType.GOTO_NODE; diagramID: Nullable; } //# sourceMappingURL=goToNode.d.ts.map