8 lines
303 B
TypeScript
8 lines
303 B
TypeScript
import { VisualizerData } from "../shared/types";
|
|
import { TemplateType } from "./template-types";
|
|
export type RenderTemplateOptions = {
|
|
data: VisualizerData;
|
|
title: string;
|
|
};
|
|
export declare const renderTemplate: (templateType: TemplateType, options: RenderTemplateOptions) => Promise<string>;
|