UNPKG

hilink-nodejs-sms

Version:

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

11 lines (10 loc) 326 B
import { IConnectorResponse } from './index'; interface IConnector { post: (url: string, body?: string, headers?: { [name: string]: string; }) => Promise<IConnectorResponse>; get: (url: string, headers?: { [name: string]: string; }) => Promise<IConnectorResponse>; } export default IConnector;