2025-09-05 14:59:21 +08:00

7 lines
245 B
TypeScript

import { TemplateType } from "./template-types";
export type RenderTemplateOptions = {
data: string;
title: string;
};
export declare const renderTemplate: (templateType: TemplateType, options: RenderTemplateOptions) => Promise<string>;