From cb7020a0564c613855354a5265485287675b5bde Mon Sep 17 00:00:00 2001 From: MatejQ Date: Tue, 22 Sep 2015 13:22:37 +0200 Subject: [PATCH] Fixed incorrect IGridOptions.rowEquality() signature --- ui-grid/ui-grid.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ui-grid/ui-grid.d.ts b/ui-grid/ui-grid.d.ts index 27e2e1fff..3a58fdfa4 100644 --- a/ui-grid/ui-grid.d.ts +++ b/ui-grid/ui-grid.d.ts @@ -809,10 +809,10 @@ declare module uiGrid { /** * By default, rows are compared using object equality. This option can be overridden * to compare on any data item property or function - * @param {IGridRow} entityA First Data Item to compare - * @param {IGridRow} entityB Second Data Item to compare + * @param {any} entityA First Data Item to compare + * @param {any} entityB Second Data Item to compare */ - rowEquality?(entityA: IGridRow, entityB: IGridRow): boolean; + rowEquality?(entityA: any, entityB: any): boolean; /** * This function is used to get and, if necessary, set the value uniquely identifying this row * (i.e. if an identity is not present it will set one).