1
0
mirror of https://github.com/jaandrle/deka-dom-el synced 2026-01-11 16:26:28 +01:00
This commit is contained in:
2023-09-13 21:06:13 +02:00
parent d7e0b17e38
commit dfcb98bfbe
6 changed files with 17 additions and 24 deletions

7
jsdom.d.ts vendored Normal file
View File

@@ -0,0 +1,7 @@
import { el, assign, on } from "./index.d";
export * from "./index.d";
export function register(dom: typeof document): Promise<{
el: typeof el,
assign: typeof assign,
on: typeof on
}>