@speedup/notification-sms-smsir
Version:
SMS notification implementation for SMS.ir
19 lines (18 loc) • 359 B
TypeScript
/**
* Send configuration
*/
declare type ISendConfig = {
/**
* The number that you want to send SMS from
*/
lineNumber: string;
/**
* Send immediately or as scheduled
*/
sendDateTime?: string;
/**
* Can continue if any error occurred
*/
canContinueInCaseOfError: boolean;
};
export default ISendConfig;