UNPKG

@voiceflow/voiceflow-types

Version:

Voiceflow 'voiceflow' project types

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