cloudonix-js
Version:
A JavaScript library for building and serving Cloudonix Voice Application XML (CXML) documents with support for AI voice agents, media streaming, and advanced telephony features
20 lines (18 loc) • 496 B
JavaScript
/**
* @file Description noun implementation for Converse verb
* @copyright 2025 Nir Simionovich, nirs@cloudonix.io
* @license MIT
* @module cloudonix-js/verbs/converseNouns/description
* @description Implements the Description noun for Converse verb
*/
;
module.exports = {
/**
* Create a Description element
* @param {string} text - The description text
* @returns {Object} - The Description element
*/
create: (text) => {
return { '#text': text };
}
};