igniteui-react-core
Version:
Ignite UI React Core.
15 lines (14 loc) • 400 B
TypeScript
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;
}