Skip to content

Commit 0bb4610

Browse files
authored
Apply suggestions from code review
Signed-off-by: Athan <kgryte@gmail.com>
1 parent 3e6abe9 commit 0bb4610

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • lib/node_modules/@stdlib/blas/ext/base/ndarray/grev/docs/types

lib/node_modules/@stdlib/blas/ext/base/ndarray/grev/docs/types/index.d.ts

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

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

23-
import { typedndarray } from '@stdlib/types/ndarray';
23+
import { ndarray } from '@stdlib/types/ndarray';
2424

2525
/**
2626
* Reverses a one-dimensional ndarray in-place.
@@ -41,7 +41,7 @@ import { typedndarray } from '@stdlib/types/ndarray';
4141
* var arr = ndarray2array( x );
4242
* // returns [ 4.0, 3.0, 2.0, 1.0 ]
4343
*/
44-
declare function grev<T extends typedndarray<any> = typedndarray<any>>( arrays: [ T ] ): T;
44+
declare function grev<T extends ndarray>( arrays: [ T ] ): T;
4545

4646

4747
// EXPORTS //

0 commit comments

Comments
 (0)