UNPKG

hilink-nodejs-sms

Version:

Node.js library to send sms using Huawei modems (hilink).

6 lines (5 loc) 152 B
interface IHilinkSms { sms: (message: string, recipient: string | string[]) => Promise<void>; destroy: () => void; } export default IHilinkSms;