API Docs for: 2.0.20133.2
Show:

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

/// <reference path="theme.ts" />
/// <reference path="constants.ts" />
/**
 * @module UI
 * @namespace ui.theme
 */
namespace internal.ui.theme {

    /**
     * Theme config enables customization for the feature and individual components.
     * @class Config
     */
    export interface Config {
        /**
         * controls the default visual experience.
         * A value from A value from {{#crossLink "ui.theme.ThemeColor"}}{{/crossLink}}
         * @property  {string} type
         * @default LIGHT
         */
        readonly type: string;
    }
}