UNPKG

node-easysms

Version:

EasySMS is an SMS sender for Node.js

16 lines (15 loc) 434 B
/** * 配置对象 */ export declare class Config { protected config: EasySmsConfig; constructor(config?: EasySmsConfig); get(key?: string, defaultValue?: any): any; set(key: string, value: any): object; has(key: string): boolean; offsetExists(key: string): boolean; offsetGet(key: string): any; offsetSet(key: string, value: any): void; offsetUnset(key: string): void; toString(): string; }