@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
16 lines (15 loc) • 461 B
TypeScript
import { AdaptableStyle } from './Common/AdaptableStyle';
import { BaseState } from './BaseState';
/**
* Adaptable State Section for Quick Search Module
*/
export interface QuickSearchState extends BaseState {
/**
* Last Quick Search that was run (and will run again at start up)
*/
QuickSearchText?: string;
/**
* Style to use to highlight matching cells - uses common `AdaptableStyle` object
*/
Style?: AdaptableStyle;
}