API Docs for: 2.0.20133.2
Show:

File: src\internal\ui\theme\constants.ts

/**
 * @module UI
 * @namespace ui.theme
 */
namespace internal.ui.theme {
    /**
     * Enum ui.theme.Environment
     * @class ThemeColor
     * @static 
     */
    export namespace ThemeColor {
        /**
         * @property {string} LIGHT
         * @default "light"
         */
        export const LIGHT = "light";
        /**
         * @property {string} DARK
         * @default "dark"
         */
        export const DARK = "dark";
    }

     /**
     * Enum ui.theme.DisplayType
     * @class DisplayType
     * @static 
     */
    export namespace DisplayType {
        /**
          * @property {string} NONE
          * @default "none"
          */
        export const NONE = "none";
        /**
         * @property {string} NORMAL
         * @default "normal"
         */
        export const NORMAL = "normal";
    }
}