Skip to content

Commit 9a0737c

Browse files
authored
fix: apply suggestions from code review
Signed-off-by: Muhammad Haris <[email protected]>
1 parent 079eeae commit 9a0737c

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/array/base/reshape/docs/types

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/array/base/reshape/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ type ArrayND<T> = Array1D<T> | Array2D<T> | Array3D<T> | Array4D<T> | Array5D<T>
4949
* var out = reshape( x, [ 2, 3 ], [ 3, 2 ], false );
5050
* // returns [ [ 1, 2 ], [ 3, 4 ], [ 5, 6 ] ]
5151
*/
52-
declare function reshape<T = unknown>( x: ArrayND<T>, fromShape: Shape, toShape: Shape, colexicographic: boolean ): Array<T>;
52+
declare function reshape<T = unknown>( x: ArrayND<T>, fromShape: Shape, toShape: Shape, colexicographic: boolean ): ArrayND<T>;
5353

5454

5555
// EXPORTS //

0 commit comments

Comments
 (0)