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

10
types/renderer.d.ts vendored Normal file
View file

@ -0,0 +1,10 @@
export interface File {
get html(): string;
get data(): {
[key: string]: any;
};
}
export default interface Renderer {
get name(): string;
loadAsHTML(path: string): File;
}