UNPKG

@voiceflow/google-types

Version:
16 lines 830 B
import { ChatProject } from '@voiceflow/chat-types'; import type { VoiceflowConstants } from '@voiceflow/voiceflow-types'; import type { ChatMemberPlatformData } from './member'; export * from './member'; export interface SharedChatPlatformData extends ChatProject.PlatformData { } export interface ChatPlatformData extends SharedChatPlatformData { } export interface ChatProject extends ChatProject.Project<ChatMemberPlatformData> { type: VoiceflowConstants.ProjectType.CHAT; platform: VoiceflowConstants.PlatformType.GOOGLE; platformData: ChatPlatformData; } export declare const defaultSharedChatPlatformData: (data?: Partial<SharedChatPlatformData>) => SharedChatPlatformData; export declare const defaultChatPlatformData: (data?: Partial<ChatPlatformData>) => ChatPlatformData; //# sourceMappingURL=index.d.ts.map