UNPKG

@voiceflow/voiceflow-types

Version:

Voiceflow 'voiceflow' project types

17 lines 695 B
import type { BaseNode, BaseRequest } from '@voiceflow/base-types'; import type { VoiceflowPrompt } from '../utils.js'; import type { ChatStep, ChatStepData } from './chat.js'; import type { VoiceStep, VoiceStepData } from './voice.js'; export * from './chat.js'; export * from './voice.js'; /** @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