igniteui-react-core
Version:
Ignite UI React Core.
23 lines (22 loc) • 397 B
TypeScript
import { Type } from "./type";
/**
* Specifies the current xml:space scope
*/
export declare enum XmlSpace {
/**
* No xml:space scope.
*/
None = 0,
/**
* the xml:space scope = "default"
*/
Default = 1,
/**
* the xml:space scope = "preserve"
*/
Preserve = 2
}
/**
* @hidden
*/
export declare let XmlSpace_$type: Type;