UNPKG

@v4fire/client

Version:

V4Fire client core library

20 lines (16 loc) 429 B
/*! * V4Fire Client Core * https://github.com/V4Fire/Client * * Released under the MIT license * https://github.com/V4Fire/Client/blob/master/LICENSE */ import type { ComponentElement } from 'core/component'; export type DocumentFragmentP = DocumentFragment & { getAttribute(nm: string): void; setAttribute(nm: string, val: string): void; }; export type DirElement = Element | ComponentElement | DocumentFragmentP;