UNPKG

mnotify-ts-sdk

Version:

Third-Party TypeScript SDK for mNotify BMS API

17 lines 784 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.MNotifyError = exports.MNotify = void 0; const MNotifyClient_1 = require("./client/MNotifyClient"); const SMSService_1 = require("./sms/SMSService"); const ContactService_1 = require("./contacts/ContactService"); const MNotifyError_1 = require("./errors/MNotifyError"); Object.defineProperty(exports, "MNotifyError", { enumerable: true, get: function () { return MNotifyError_1.MNotifyError; } }); class MNotify { constructor(config) { const client = new MNotifyClient_1.MNotifyClient(config); this.sms = new SMSService_1.SMSService(client); this.contacts = new ContactService_1.ContactService(client); } } exports.MNotify = MNotify; //# sourceMappingURL=index.js.map