UNPKG

igniteui-react-core

Version:
15 lines (14 loc) 400 B
import { XObject } from "./XObject"; import { XmlNodeType, XmlAttribute, XmlElement } from "./xml"; import { Type } from "./type"; /** * @hidden */ export declare class XAttribute extends XObject { static $t: Type; constructor(a: XmlAttribute); e(a: XmlElement): void; protected get_nodeType(): XmlNodeType; get nodeType(): XmlNodeType; get value(): string; }