linkedom
Version:
A triple-linked lists based DOM implementation
11 lines (10 loc) • 333 B
TypeScript
/**
* @implements globalThis.CSSStyleDeclaration
*/
export class CSSStyleDeclaration extends Map<any, any> implements globalThis.CSSStyleDeclaration {
constructor(element: any);
set cssText(arg: string);
get cssText(): string;
get [PRIVATE](): CSSStyleDeclaration;
}
import { PRIVATE } from "../shared/symbols.js";