UNPKG

@voiceflow/chat-types

Version:

Voiceflow chat project types

13 lines 536 B
import type { BaseNode, Nullable } from '@voiceflow/base-types'; import type { NodeNoMatch, NodeNoReply, StepNoMatch, StepNoReply } from './utils'; 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