UNPKG

@adaptabletools/adaptable

Version:

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

13 lines (12 loc) 399 B
/** * Base Interface for all Adaptable State objects; contains`Revision` property, used for versioning */ export interface BaseState { /** * Version number of the Item - allows developers to update one section in Initial Adaptable State while keeping others unchanged */ Revision?: number | { Key: number; UpdateStrategy: 'Override' | 'KeepUserDefined'; }; }