@adaptabletools/adaptable-cjs
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
12 lines (11 loc) • 595 B
TypeScript
import * as Redux from 'redux';
import { UserInterfaceState } from '../../AdaptableState/UserInterfaceState';
/**
* @ReduxAction Sets whether all AdapTable UI elements are hidden
*/
export declare const USER_INTERFACE_SET_HIDE_ADAPTABLE_UI = "USER_INTERFACE_SET_HIDE_ADAPTABLE_UI";
export interface UserInterfaceSetHideAdaptableUIAction extends Redux.Action {
hideAdaptableUI: boolean;
}
export declare const UserInterfaceSetHideAdaptableUI: (hideAdaptableUI: boolean) => UserInterfaceSetHideAdaptableUIAction;
export declare const UserInterfaceReducer: Redux.Reducer<UserInterfaceState>;