UNPKG

domsubi

Version:

A Virtual-DOM Library for JavaScript

11 lines (10 loc) 479 B
import { jsxmlComponent } from "./jsxmlComponent"; import { jshtmlVisitor } from "./jshtmlVisitor"; import { DOMSource, DOMStringSource } from "./types"; export declare class jshtmlInlineStyleRule extends jsxmlComponent { element: HTMLElement; cssprop: string; constructor(element: HTMLElement, cssprop: string, source: DOMStringSource, parent?: jsxmlComponent); accept(visitor: jshtmlVisitor): void; migrate(v: DOMSource): jshtmlInlineStyleRule; }