Update/agent (#13298)

* Revert "Fix Agent not working (#13126)"

This reverts commit a0ee8b00fb.

* agent fix and bump
This commit is contained in:
Aditya Bist
2020-11-09 09:00:03 -08:00
committed by GitHub
parent 8b73391845
commit fa9a38d74a
6 changed files with 70 additions and 47 deletions

View File

@@ -1584,7 +1584,6 @@ declare namespace Slick {
public setPagingOptions(args: PagingOptions): void;
public getPagingInfo(): PagingOptions;
public getItems(): T[];
public getFilteredItems(): T[]; // manually adding this type - it's present in the definition but not the typings file from DefinitelyTyped
public setItems(data: T[], objectIdProperty?: string): void;
public setFilter(filterFn: (item: T, args: any) => boolean): void; // todo: typeof(args)
public sort(comparer: Function, ascending: boolean): void; // todo: typeof(comparer), should be the same callback as Array.sort