1
0
mirror of https://github.com/jaandrle/deka-dom-el synced 2025-04-05 21:25:53 +02:00
Jan Andrle 5e7f7558b5
cross-platform using enviroment ()
* 🎉

* Dev bugs@v0.7.6 ()

* Update observables-lib.js

* `collectChildren`

* Update todosComponent.js

* 🚀 filter for `collectChildren`

* finalization
2024-01-07 13:22:55 +01:00

16 lines
386 B
TypeScript

import { el, assign, on } from "./index.d";
export * from "./index.d";
type JSDOM= {
window: Window,
document: Document,
HTMLElement: typeof HTMLElement,
SVGElement: typeof SVGElement,
DocumentFragment: typeof DocumentFragment,
MutationObserver?: typeof MutationObserver
};
export function register(dom: JSDOM): Promise<{
el: typeof el,
assign: typeof assign,
on: typeof on
}>