chore: format

This commit is contained in:
xiaojunnuo
2026-05-31 01:41:33 +08:00
parent acd440106b
commit 4b57a0d729
557 changed files with 12530 additions and 14039 deletions
@@ -1,18 +1,15 @@
export type BuildContentReq = {
data: any;
data: any;
};
export interface ITemplateProvider<T = any> {
buildContent: (params: BuildContentReq) => Promise<T>;
buildDefaultContent: (params: BuildContentReq) => Promise<T>;
}
export interface ITemplateProvider<T=any> {
buildContent: (params: BuildContentReq) => Promise<T>;
buildDefaultContent:(params: BuildContentReq) => Promise<T>;
}
export type EmailContent = {
subject:string,
content?:string,
html?:string
subject: string;
content?: string;
html?: string;
};