refactor: change access modifiers for properties in Template class to public

This commit is contained in:
2025-03-19 13:10:36 +01:00
parent 9f5c0f4dea
commit 75d066cf36
2 changed files with 8 additions and 8 deletions

8
dist/template.d.ts vendored
View File

@ -1,9 +1,9 @@
export default class Template {
private views;
private globals;
private cache;
views: string;
globals: Record<string, any>;
cache: boolean;
debug: boolean;
private templates;
private debug;
constructor();
setDebug(debug: boolean): void;
setViews(views: string): void;