From ef2926042e00e4fafab125d0a2135a2c5a772c7a Mon Sep 17 00:00:00 2001 From: Steven Date: Fri, 20 Dec 2013 18:47:38 -0800 Subject: [PATCH] RefreshHints are optional The filters in RefreshHints should be optional so there is no error when updating a single one such as: this.dataView.setRefreshHints({ isFilterUnchanged: true }); --- slickgrid/SlickGrid.d.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/slickgrid/SlickGrid.d.ts b/slickgrid/SlickGrid.d.ts index becc6f617..04af6eb33 100644 --- a/slickgrid/SlickGrid.d.ts +++ b/slickgrid/SlickGrid.d.ts @@ -1572,11 +1572,11 @@ declare module Slick { } export interface RefreshHints { - isFilterNarrowing: boolean; - isFilterExpanding: boolean; - isFilterUnchanged: boolean; - ignoreDiffsBefore: boolean; - ignoreDiffsAfter: boolean; + isFilterNarrowing?: boolean; + isFilterExpanding?: boolean; + isFilterUnchanged?: boolean; + ignoreDiffsBefore?: boolean; + ignoreDiffsAfter?: boolean; } export interface OnRowCountChangedEventData {