UNPKG

@adaptabletools/adaptable

Version:

Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

25 lines (24 loc) 598 B
import * as Redux from 'redux'; import { AdaptableState } from '../../AdaptableState/AdaptableState'; import { BaseContext } from '../../types'; /** * Object returned by the `AdaptableStateChanged` event */ export interface AdaptableStateChangedInfo extends BaseContext { /** * Name of the Action */ actionName: string; /** * The Redux Action that was invoked */ action: Redux.Action; /** * Adaptable State before the Action */ oldState: AdaptableState; /** * Adaptable State after the Action */ newState: AdaptableState; }