elearning/Frontend-Learner/node_modules/rollup-plugin-visualizer/dist/plugin/render-template.d.ts
2026-01-13 10:48:02 +07:00

6 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>;