We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4b2764 commit 1093407Copy full SHA for 1093407
1 file changed
lib/node_modules/@stdlib/array/base/take/docs/types/index.d.ts
@@ -46,7 +46,7 @@ interface Take {
46
* var y = take( x, [ 1, 3 ], 'throw' );
47
* // returns [ 2, 4 ]
48
*/
49
- <T = unknown>( x: Collection<T>, indices: IndexArray, mode: Mode ): Array<T>;
+ <T = unknown>( x: Collection<T> | AccessorArrayLike<T>, indices: IndexArray, mode: Mode ): Array<T>;
50
51
/**
52
* Takes elements from an array and assigns the value to elements in a provided output array.
0 commit comments