UNPKG

@voiceflow/voiceflow-types

Version:

Voiceflow 'voiceflow' project types

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