UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

15 lines (14 loc) 398 B
import { Base, Type } from "./type"; import { XmlNode, XmlNodeType } from "./xml"; /** * @hidden */ export declare abstract class XObject extends Base { static $t: Type; constructor(a: XmlNode); private _backingNode; protected get backingNode(): XmlNode; protected set backingNode(a: XmlNode); abstract get nodeType(): XmlNodeType; toString(): string; }