mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
10 lines
369 B
TypeScript
10 lines
369 B
TypeScript
// Type definitions for group-array 1.0
|
|
// Project: https://github.com/doowb/group-array
|
|
// Definitions by: Richie Bendall <https://github.com/Richienb>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare function groupArray(arr: object[], ...props: string[]): object;
|
|
declare function groupArray(arr: object[]): object[];
|
|
|
|
export = groupArray;
|