Upload files to "/"

This commit is contained in:
Sven Minio 2026-05-17 12:39:25 +02:00
commit 1fa6d558c7
149 changed files with 27987 additions and 0 deletions

13
dist/server.d.ts vendored Normal file
View file

@ -0,0 +1,13 @@
/**
* * Parses an HTML string on the server, allowing DOM manipulation.
* @param html The raw HTML string.
* @returns An object containing the window, document, and the jBase instance setup.
*/
export declare function parseHTML(html: string): {
$: (selector: import("./types").JBaseInput) => import("./core").jBase;
document: Document;
window: Window;
html: () => string;
close: () => void;
};
//# sourceMappingURL=server.d.ts.map