UNPKG

linkedom

Version:

A triple-linked lists based DOM implementation

11 lines (10 loc) 316 B
/** * @implements globalThis.ShadowRoot */ export class ShadowRoot extends NonElementParentNode implements globalThis.ShadowRoot { constructor(host: any); host: any; set innerHTML(html: string); get innerHTML(): string; } import { NonElementParentNode } from '../mixin/non-element-parent-node.js';