UNPKG

@adaptabletools/adaptable

Version:

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

14 lines (13 loc) 254 B
/** * Defines where a Data Change should be monitored */ export interface DataChangedScope { /** * Scopes every Column in the Row */ wholeRow: boolean; /** * Scopes a group of Column Ids */ columnIds: Set<string>; }