UNPKG

@adaptabletools/adaptable

Version:

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

8 lines (7 loc) 172 B
/** * A simple key value pair class where the Key is always a string and the value can be anything. */ export interface KeyValuePair { Key: string; Value: any; }