UNPKG

ajsfw

Version:
11 lines (10 loc) 331 B
import { IElement } from "./IElement"; import { IAttr } from "./IAttr"; export default class Attr implements IAttr { private __name; readonly name: string; private __ownerElement; readonly ownerElement: IElement; value: string; constructor(ownerElement: IElement, name: string, value?: string); }