UNPKG

@voiceflow/voice-types

Version:

Voiceflow voice project types

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