UNPKG

@voiceflow/voiceflow-types

Version:

Voiceflow 'voiceflow' project types

17 lines 680 B
import type { BaseNode, BaseRequest } from '@voiceflow/base-types'; import type { VoiceflowPrompt } from '../utils'; import type { ChatStep, ChatStepData } from './chat'; import type { VoiceStep, VoiceStepData } from './voice'; export * from './chat'; export * from './voice'; /** @deprecated */ export type Step = ChatStep | VoiceStep; /** @deprecated */ export type StepPorts = BaseNode.Capture.StepPorts; /** @deprecated */ export type StepData = ChatStepData | VoiceStepData; /** @deprecated */ export interface Node extends BaseNode.Capture.Node, BaseRequest.NodeButton { noReply?: BaseNode.Utils.NodeNoReply<VoiceflowPrompt> | null; } //# sourceMappingURL=index.d.ts.map