UNPKG

airline-ccai-fulfillment-tools-test

Version:

A collection of tools to assist in the creation of Airline CCAI cards via fulfillment scripts

14 lines (13 loc) 389 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.createNotification = void 0; var types_1 = require("../types"); exports.createNotification = function (_a) { var title = _a.title, type = _a.type, text = _a.text; return ({ template: types_1.TEMPLATES.NOTIFICATION, title: title, type: type, text: text, }); };