jBase-2/dist/server.d.ts

13 lines
454 B
TypeScript
Raw Permalink Normal View History

2026-05-17 12:39:25 +02:00
/**
* * 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