UNPKG

@speedup/notification-sms-smsir

Version:
19 lines (18 loc) 283 B
/** * Sender configuration */ declare type ISenderConfig = { /** * API key */ apiKey: string; /** * API secret */ secret: string; /** * ms-compatible value (e.g. '30m') */ authTimeout?: string; }; export default ISenderConfig;