删除了原来config

This commit is contained in:
Xu Chang 2022-12-12 12:26:21 +08:00
parent 1b502d4911
commit dd8d5ee624
2 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,6 @@ export declare type AliSmsConfig = {
templates: Record<string, {
signName?: string;
code: string;
params: string[];
}>;
};
export declare type TencentSmsConfig = {

View File

@ -49,7 +49,7 @@ export type AliSmsConfig = {
templates: Record<string, {
signName?: string;
code: string; // templateCode
params: string[]; // templateParams中的key值(和message props中的参数位置对应)
// templateParams改成function注入
}>;
};
@ -59,6 +59,7 @@ export type TencentSmsConfig = {
templates: Record<string, {
signName?: string;
code: string;
// templateParams改成function注入
}>;
};