UNPKG

botframework-webchat-component

Version:
13 lines (10 loc) 223 B
export default function textFormatToContentType(textFormat) { switch (textFormat) { case 'plain': return 'text/plain'; case 'xml': return 'text/xml'; default: return 'text/markdown'; } }