UNPKG

@voiceflow/base-types

Version:

Voiceflow base project types

10 lines (9 loc) 303 B
import { defaultSettings } from './settings.js'; export * from './publishing.js'; export * from './settings.js'; export const defaultPlatformData = ({ slots = [], intents = [], settings = {}, publishing = {}, }) => ({ slots, intents, settings: defaultSettings(settings), publishing, });