elearning/Frontend-Learner/node_modules/rollup-plugin-visualizer/dist/plugin/render-template.d.ts

7 lines
245 B
TypeScript
Raw Normal View History

2026-01-13 10:46:40 +07:00
import { TemplateType } from "./template-types";
export type RenderTemplateOptions = {
data: string;
title: string;
};
export declare const renderTemplate: (templateType: TemplateType, options: RenderTemplateOptions) => Promise<string>;