import { IRowNode } from 'ag-grid-enterprise'; /** * Standard comparer function used to evaluate custom sorts, returns -1, 0, 1 as required */ export type AdaptableComparerFunction = ( /** * First Cell to compare */ valueA: any, /** * Second Cell to compare */ valueB: any, /** * First Row Node to compare */ nodeA?: IRowNode, /** * Second Row Node to compare */ nodeB?: IRowNode) => number;