UNPKG

@netgsm/sms

Version:

Netgsm API Client for SMS sending and reporting

13 lines (12 loc) 372 B
/** * @module @netgsm/sms * @description Netgsm SMS API client for Node.js */ import { ApiErrorCode, BalanceType, OperatorCode, SmsStatus } from "./enums.mjs"; import Netgsm from "./netgsm.mjs"; export { Netgsm }; export default Netgsm; // Export all types export * from "./types.mjs"; // Export all enums export { ApiErrorCode, BalanceType, OperatorCode, SmsStatus };