@voiceflow/chat-types
Version:
Voiceflow chat project types
13 lines • 539 B
TypeScript
import type { BaseNode, Nullable } from '@voiceflow/base-types';
import type { NodeNoMatch, NodeNoReply, StepNoMatch, StepNoReply } from './utils.js';
export interface StepData extends BaseNode.Carousel.StepData {
noReply?: Nullable<StepNoReply>;
noMatch?: Nullable<StepNoMatch>;
}
export interface Step<Data = StepData> extends BaseNode.Carousel.Step<Data> {
}
export interface Node extends BaseNode.Carousel.Node {
noReply?: Nullable<NodeNoReply>;
noMatch?: Nullable<NodeNoMatch>;
}
//# sourceMappingURL=carousel.d.ts.map