UNPKG

@davidbolaji/termii-node

Version:

Node.js SDK for Termii API – send SMS, voice, OTP, and manage messaging with ease.

16 lines (15 loc) 478 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.SotelService = void 0; const EsimService_1 = require("./EsimService"); /** * SotelService is the entrypoint for all esim-related API services. * It groups sub-services for better organization and reusability. */ class SotelService { constructor(http) { this.http = http; this.esim = new EsimService_1.EsimService(this.http); } } exports.SotelService = SotelService;