devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
39 lines (38 loc) • 1.05 kB
TypeScript
/**
* DevExtreme (ui/themes.d.ts)
* Version: 19.2.6
* Build date: Thu Jan 30 2020
*
* Copyright (c) 2012 - 2020 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
/** An object that serves as a namespace for the methods that work with DevExtreme CSS Themes. */
export default class themes {
/**
* @docid ui.themesmethods.current
* @publicName current()
* @static
* @return string
* @prevFileNamespace DevExpress.ui
* @public
*/
static current(): string;
/**
* @docid ui.themesmethods.current
* @publicName current(themeName)
* @param1 themeName:string
* @static
* @prevFileNamespace DevExpress.ui
* @public
*/
static current(themeName: string): void;
/**
* @docid ui.themesmethods.ready
* @publicName ready(callback)
* @param1 callback:function
* @static
* @prevFileNamespace DevExpress.ui
* @public
*/
static ready(callback: Function): void;
}