UNPKG

@voiceflow/voiceflow-types

Version:

Voiceflow 'voiceflow' project types

10 lines (9 loc) 359 B
import { ChatVersion } from '@voiceflow/chat-types'; import { defaultBaseSettings } from '../base.js'; export const defaultSharedChatSettings = (settings = {}) => ({ ...ChatVersion.defaultSettings(settings), }); export const defaultChatSettings = (settings = {}) => ({ ...defaultSharedChatSettings(settings), ...defaultBaseSettings(settings), });