flummpress/dist/template.d.ts
2025-03-19 12:57:51 +01:00

19 lines
594 B
TypeScript

export default class Template {
private views;
private globals;
private cache;
private templates;
private debug;
constructor();
setDebug(debug: boolean): void;
setViews(views: string): void;
setGlobals(globals: Record<string, any>): void;
setCache(cache: boolean): void;
private readdir;
private getTemplate;
render(file: string, data?: Record<string, any>, locals?: Record<string, any>): string;
escape(str: string): string;
forEach(o: any, f: (value: any, key: string | number) => void): void;
getMtime(file: string): number;
}