UNPKG

352 BTypeScriptView Raw
1import { SmsTemplate } from "../entities/sms-template.entity";
2export declare class ParamUtil {
3 findSameTemplateId(template: Array<SmsTemplate>): Promise<Array<string>>;
4 genValidationCode(): Promise<number>;
5 encryptor(aesKey: string, original: string): Promise<string>;
6 decryptor(aesKey: string, cipherText: string): Promise<string>;
7}