2023-09-13 21:06:13 +02:00
|
|
|
import { el, assign, on } from "./index.d";
|
|
|
|
export * from "./index.d";
|
2023-11-10 17:15:59 +01:00
|
|
|
export function register(dom: JSDOM): Promise<{
|
2023-09-05 11:01:29 +02:00
|
|
|
el: typeof el,
|
|
|
|
assign: typeof assign,
|
|
|
|
on: typeof on
|
|
|
|
}>
|