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

This commit is contained in:
Flummi 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;

View File

@ -2,11 +2,11 @@ import fs from "node:fs";
import path from "node:path";
export default class Template {
private views: string;
private globals: Record<string, any>;
private cache: boolean;
public views: string;
public globals: Record<string, any>;
public cache: boolean;
public debug: boolean;
private templates: Map<string, { code: string; cached: Date }>;
private debug: boolean;
constructor() {
this.views = "./views";