UNPKG

ag-grid

Version:

Advanced Javascript Datagrid. Supports raw Javascript, AngularJS 1.x, AngularJS 2.0 and Web Components

15 lines (11 loc) 334 B
module ag.grid { export interface Filter { // mandatory methods getGui(): any; isFilterActive(): boolean; doesFilterPass(params: any): boolean; // optional methods afterGuiAttached?(params?: {hidePopup?: Function}): void; onNewRowsLoaded?(): void; } }