UNPKG

181 BTypeScriptView Raw
1export interface SmsRequest {
2 appId: string;
3 appKey?: string;
4 signName?: string;
5 templateId: number;
6 templateParam?: Array<string>;
7 mobile: Array<string>;
8}