hilink-nodejs-sms
Version:
Node.js library to send sms using Huawei modems (hilink).
11 lines (10 loc) • 632 B
TypeScript
import { ILogger } from './interfaces';
declare const base64: (data: string) => string;
declare const getDate: () => string;
declare const jsonToXmlString: (obj: any) => string;
declare const sha256: (data: string) => string;
declare const xmlStringToJson: (body: any) => Promise<any>;
declare const createLogger: (isSilent: boolean, name?: string) => ILogger;
declare const encodePassword: (login: string, password: string, token: string) => string;
declare const retrieveToken: (data: string[] | string) => string;
export { base64, getDate, jsonToXmlString, createLogger, sha256, xmlStringToJson, encodePassword, retrieveToken };