// Type definitions for group-array 1.0 // Project: https://github.com/doowb/group-array // Definitions by: Richie Bendall // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped declare function groupArray(arr: object[], ...props: string[]): object; declare function groupArray(arr: object[]): object[]; export = groupArray;