Files
WAI_Project_VUE/node_modules/rollup-plugin-visualizer/dist/plugin/render-template.d.ts

7 lines
245 B
TypeScript
Raw Normal View History

2025-11-24 23:24:06 +08:00
import { TemplateType } from "./template-types";
export type RenderTemplateOptions = {
data: string;
title: string;
};
export declare const renderTemplate: (templateType: TemplateType, options: RenderTemplateOptions) => Promise<string>;