mirror of
https://github.com/certd/certd.git
synced 2026-07-09 22:47:38 +08:00
10 lines
221 B
TypeScript
10 lines
221 B
TypeScript
|
|
|
||
|
|
export type BuildContentReq = {
|
||
|
|
data: any;
|
||
|
|
}
|
||
|
|
|
||
|
|
export type BuildContentReply = Record<string, string>;
|
||
|
|
|
||
|
|
export interface ITemplateProvider {
|
||
|
|
buildContent: (params: BuildContentReq) => Promise<BuildContentReply>;
|
||
|
|
}
|