@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
20 lines (19 loc) • 468 B
TypeScript
import { LayoutState } from '../../AdaptableState/LayoutState';
import { BaseContext } from '../../types';
/**
* EventInfo returned by LayoutChanged event
*/
export interface LayoutChangedInfo extends BaseContext {
/**
* What caused Layout State to change
*/
actionName: string;
/**
* Previous Layout State
*/
oldLayoutState: LayoutState | undefined;
/**
* Current Layout State
*/
newLayoutState: LayoutState;
}