twilio-ccai-fulfillment-tools
Version:
A collection of tools to assist in the creation of Twilio CCAI Integration cards via fulfillment scripts
14 lines (13 loc) • 430 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.createTextItem = void 0;
var types_1 = require("../../types");
exports.createTextItem = function (_a) {
var title = _a.title, width = _a.width, data = _a.data;
return ({
type: types_1.ITEMS.TEXT,
title: title,
width: width !== null && width !== void 0 ? width : types_1.SIZES.FULL,
data: data,
});
};