geezsms
Version:
GeezSMS Typscript wrapper.
13 lines (12 loc) • 327 B
TypeScript
import { AxiosInstance } from 'axios';
import SingleSMS from './single';
declare class GeezSMS {
DEFAULT_HOST: string;
PACKAGE_VERSION: string;
DEFAULT_TIMEOUT: number;
_httpClient: AxiosInstance;
single: SingleSMS;
apiKey: string;
constructor(apikey: string);
}
export default GeezSMS;