Fix getItemById()

It was missing a necessary parameter.
This commit is contained in:
Derek Cicerone
2013-10-28 17:02:58 -04:00
parent 3c1c1fafcf
commit 3b64c0a072
+1 -1
View File
@@ -1529,7 +1529,7 @@ declare module Slick {
public getGroups(): Group<T, any>[];
public getIdxById(): string;
public getRowById(): T;
public getItemById(): T;
public getItemById(id: any): T;
public getItemByIdx(): T;
public mapRowsToIds(rowArray: T[]): string[];
public setRefreshHints(hints: RefreshHints): void;