UNPKG

preact-custom-element

Version:
9 lines (7 loc) 232 B
import { h, AnyComponent } from 'preact'; export type PreactCustomElement = HTMLElement & { _root: ShadowRoot | HTMLElement; _vdomComponent: AnyComponent; _vdom: ReturnType<typeof h> | null; _props: Record<string, unknown>; };