UNPKG

@netgsm/sms

Version:

Netgsm API Client for SMS sending and reporting

13 lines (12 loc) 592 B
/** * @module @netgsm/sms * @description Netgsm SMS API client for Node.js */ import { ApiErrorCode, BalanceType, OperatorCode, SmsStatus, SendSmsErrorCode, SendOtpSmsErrorCode, InboxErrorCode, ReportErrorCode, MsgHeaderErrorCode, CancelErrorCode, } 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, SendSmsErrorCode, SendOtpSmsErrorCode, InboxErrorCode, ReportErrorCode, MsgHeaderErrorCode, CancelErrorCode, };