UNPKG

@voiceflow/chat-types

Version:

Voiceflow chat project types

13 lines 483 B
import type { BaseNode, Nullable } from '@voiceflow/base-types'; import type { StepNoMatch, StepNoReply, StepReprompt } from './utils'; export interface StepData extends BaseNode.Buttons.StepData, StepReprompt { noReply?: Nullable<StepNoReply>; noMatch?: Nullable<StepNoMatch>; /** * @deprecated use noMatch instead */ else?: StepNoMatch; } export interface Step<Data = StepData> extends BaseNode.Buttons.Step<Data> { } //# sourceMappingURL=buttons.d.ts.map