igniteui-react-core
Version:
Ignite UI React Core.
16 lines (15 loc) • 388 B
TypeScript
import { Base, Type } from "./type";
import { XNamespace } from "./XNamespace";
/**
* @hidden
*/
export declare class XName extends Base {
static $t: Type;
private a;
private b;
constructor(a: string, b: string);
get localName(): string;
get namespaceName(): string;
get namespace(): XNamespace;
static get(a: string, b: string): XName;
}