Skip to content

Commit 54fc8e7

Browse files
committed
fix: update import path for Collection type definition
Ref: stdlib-js@bde4671
1 parent b95f8bc commit 54fc8e7

File tree

1 file changed

+3
-3
lines changed
  • lib/node_modules/@stdlib/utils/group/docs/types

1 file changed

+3
-3
lines changed

lib/node_modules/@stdlib/utils/group/docs/types/index.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/// <reference types="@stdlib/types"/>
2222

23-
import { Collection } from '@stdlib/types/object';
23+
import { Collection } from '@stdlib/types/array';
2424

2525
/**
2626
* Interface defining function options.
@@ -51,7 +51,7 @@ interface Options {
5151
* var out = group( arr, groups );
5252
* // returns { 'b': [ 'beep', 'boop', 'bar' ], 'f': [ 'foo' ] }
5353
*/
54-
declare function group( collection: Collection, groups: Collection ): any; // tslint-disable-line max-line-length
54+
declare function group( collection: Collection, groups: Collection ): any;
5555

5656
/**
5757
* Groups values as arrays associated with distinct keys.
@@ -89,7 +89,7 @@ declare function group( collection: Collection, groups: Collection ): any; // ts
8989
* var out = group( arr, opts, groups );
9090
* // returns { 'b': [ [ 0, 'beep' ], [ 1, 'boop' ], [ 3, 'bar' ] ], 'f': [ [ 2, 'foo' ] ] }
9191
*/
92-
declare function group( collection: Collection, options: Options, groups: Collection ): any; // tslint-disable-line max-line-length
92+
declare function group( collection: Collection, options: Options, groups: Collection ): any;
9393

9494

9595
// EXPORTS //

0 commit comments

Comments
 (0)