mirror of
https://github.com/jaandrle/deka-dom-el
synced 2024-11-22 07:49:38 +01:00
8 lines
187 B
TypeScript
8 lines
187 B
TypeScript
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
|
|
}>
|