19 lines
594 B
TypeScript
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;
|
|
}
|