estilo
Version:
Create color schemes for Vim, NeoVim, Airline and Lightline
13 lines • 734 B
TypeScript
import type { TemplateFunction } from "./compile.js";
import type { Eta } from "./core.js";
export declare function render<T extends object>(this: Eta, template: string | TemplateFunction, // template name or template function
data: T, meta?: {
filepath: string;
}): string;
export declare function renderAsync<T extends object>(this: Eta, template: string | TemplateFunction, // template name or template function
data: T, meta?: {
filepath: string;
}): Promise<string>;
export declare function renderString<T extends object>(this: Eta, template: string, data: T): string;
export declare function renderStringAsync<T extends object>(this: Eta, template: string, data: T): Promise<string>;
//# sourceMappingURL=render.d.ts.map