UNPKG

@voiceflow/voiceflow-types

Version:

Voiceflow 'voiceflow' project types

10 lines 469 B
import type { BaseNode } from '@voiceflow/base-types'; import type { ChatNode, ChatStep, ChatStepData } from './chat.js'; import type { VoiceNode, VoiceStep, VoiceStepData } from './voice.js'; export * from './chat.js'; export * from './voice.js'; export type Step = ChatStep | VoiceStep; export type StepPorts = BaseNode.CardV2.StepPorts; export type StepData = ChatStepData | VoiceStepData; export type Node = ChatNode | VoiceNode; //# sourceMappingURL=index.d.ts.map