mirror of
https://github.com/certd/certd.git
synced 2026-07-10 23:27:34 +08:00
chore: format
This commit is contained in:
@@ -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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user