mnotify-ts-sdk
Version:
Third-Party TypeScript SDK for mNotify BMS API
16 lines (15 loc) • 488 B
TypeScript
import { SMSService } from './sms/SMSService';
import { ContactService } from './contacts/ContactService';
import { MNotifyError } from './errors/MNotifyError';
export declare class MNotify {
readonly sms: SMSService;
readonly contacts: ContactService;
constructor(config: {
apiKey: string;
baseUrl?: string;
timeout?: number;
maxRetries?: number;
});
}
export { MNotifyError };
export type { MNotifyConfig } from './client/MNotifyClient';