UNPKG

linkedom

Version:

A triple-linked lists based DOM implementation

12 lines (11 loc) 342 B
/** * @implements globalThis.HTMLStyleElement */ export class HTMLStyleElement extends TextElement implements globalThis.HTMLStyleElement { get sheet(): any; set innerText(value: string); get innerText(): string; [SHEET]: any; } import { TextElement } from './text-element.js'; import { SHEET } from '../shared/symbols.js';