UNPKG

@netgsm/sms

Version:

Netgsm API Client for SMS sending and reporting

11 lines (10 loc) 539 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"; import Netgsm from "./netgsm"; export { Netgsm }; export default Netgsm; export * from "./types"; export { ApiErrorCode, BalanceType, OperatorCode, SmsStatus, SendSmsErrorCode, SendOtpSmsErrorCode, InboxErrorCode, ReportErrorCode, MsgHeaderErrorCode, CancelErrorCode, };