render-template.d.ts 303 B

1234567
  1. import { VisualizerData } from "../shared/types";
  2. import { TemplateType } from "./template-types";
  3. export type RenderTemplateOptions = {
  4. data: VisualizerData;
  5. title: string;
  6. };
  7. export declare const renderTemplate: (templateType: TemplateType, options: RenderTemplateOptions) => Promise<string>;