@adaptabletools/adaptable
Version:
Powerful AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
12 lines (11 loc) • 335 B
TypeScript
import { SystemThemeName } from '../../AdaptableState/ThemeState';
import { BaseContext } from '../../types';
/**
* Object returned by the `ThemeSelected` event
*/
export interface ThemeSelectedInfo extends BaseContext {
/**
* Shipped theme that is now active: `light`, `dark`, or `os`
*/
theme: SystemThemeName;
}