UNPKG

@voiceflow/google-types

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