Refactoring

This commit is contained in:
Artur Gurgul 2025-06-08 21:57:33 +02:00
parent 1e3833f7d0
commit aa563e60ea
37 changed files with 472 additions and 2392 deletions

12
types/page.d.ts vendored Normal file
View file

@ -0,0 +1,12 @@
import Renderer, { File } from "./renderer.js";
export default class Page {
file: File;
dir: string[];
path: string;
finalPath: string;
fileName: string;
hidden: boolean;
title: string;
layout: string;
constructor(filePath: string, renderer: Renderer);
}