mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-07-01 15:50:13 +00:00
Update winjs.d.ts to include proper signature for createGrouped function
createGrouped was missing a required parameter.
This commit is contained in:
2
winjs/winjs.d.ts
vendored
2
winjs/winjs.d.ts
vendored
@@ -25,7 +25,7 @@ declare module WinJS {
|
||||
public splice(index: number, count: number): any[];
|
||||
public splice(index: number): any[];
|
||||
public createFiltered(predicate: (x: any) => boolean): List;
|
||||
public createGrouped(keySelector: (x: any) => any, dataSelector: (x:any) => any): List;
|
||||
public createGrouped(keySelector: (x: any) => any, dataSelector: (x:any) => any, groupSorter: (left:any, right:any) => number): List;
|
||||
public groups: any;
|
||||
public dataSource: any;
|
||||
public getAt: any;
|
||||
|
||||
Reference in New Issue
Block a user