@voiceflow/voiceflow-types
Version:
Voiceflow 'voiceflow' project types
12 lines • 534 B
TypeScript
import type { BaseNode } from '@voiceflow/base-types';
import type { VoiceflowPrompt } from '../utils.js';
import type { ChatStep, ChatStepData } from './chat.js';
export * from './chat.js';
export type Step = ChatStep;
export type StepPorts = BaseNode.Carousel.StepPorts;
export type StepData = ChatStepData;
export interface Node extends BaseNode.Carousel.Node {
noMatch?: BaseNode.Utils.NodeNoMatch<VoiceflowPrompt> | null;
noReply?: BaseNode.Utils.NodeNoReply<VoiceflowPrompt> | null;
}
//# sourceMappingURL=index.d.ts.map