UNPKG

@voiceflow/chat-types

Version:

Voiceflow chat project types

26 lines 906 B
import type { Prompt } from '../models'; import type { BaseNode, BaseText } from '@voiceflow/base-types'; export interface StepNoReply extends BaseNode.Utils.StepNoReply<Prompt> { } export interface NodeNoReply extends BaseNode.Utils.NodeNoReply<BaseText.SlateTextValue> { } export interface StepNoMatch extends BaseNode.Utils.StepNoMatch<Prompt> { } export interface NodeNoMatch extends BaseNode.Utils.NodeNoMatch<BaseText.SlateTextValue> { } /** * @deprecated use StepNoReply instead */ export interface StepReprompt extends BaseNode.Utils.StepReprompt<Prompt> { } /** * @deprecated use NodeNoReply instead */ export interface NodeReprompt extends BaseNode.Utils.NodeReprompt<BaseText.SlateTextValue> { } /** * @deprecated use NodeNoMatch instead */ export interface DeprecatedNodeNoMatch extends BaseNode.Utils.DeprecatedNodeNoMatch<BaseText.SlateTextValue> { } //# sourceMappingURL=utils.d.ts.map