UNPKG

@voiceflow/voice-types

Version:

Voiceflow voice project types

14 lines (13 loc) 354 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.defaultPrompt = void 0; const defaultPrompt = (prompt, defaultVoice) => { if (!prompt?.content) { return null; } return { voice: prompt.voice || defaultVoice, content: prompt.content, }; }; exports.defaultPrompt = defaultPrompt;