UNPKG

@voiceflow/google-types

Version:
9 lines 390 B
import type { ChatNode, ChatStep, ChatStepData } from './chat.js'; import type { VoiceNode, VoiceStep, VoiceStepData } from './voice.js'; export * from './base.js'; export * from './chat.js'; export * from './voice.js'; export type Step = ChatStep | VoiceStep; export type StepData = ChatStepData | VoiceStepData; export type Node = ChatNode | VoiceNode; //# sourceMappingURL=index.d.ts.map