@voiceflow/google-types
Version:
Google service types
12 lines • 432 B
TypeScript
import type { ChatNode, ChatStep, ChatStepData } from './chat';
import type { VoiceNode, VoiceStep, VoiceStepData } from './voice';
export * from './base';
export * from './chat';
export * from './voice';
/** @deprecated */
export type Step = ChatStep | VoiceStep;
/** @deprecated */
export type StepData = ChatStepData | VoiceStepData;
/** @deprecated */
export type Node = ChatNode | VoiceNode;
//# sourceMappingURL=index.d.ts.map