We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e6abe9 commit 0bb4610Copy full SHA for 0bb4610
1 file changed
lib/node_modules/@stdlib/blas/ext/base/ndarray/grev/docs/types/index.d.ts
@@ -20,7 +20,7 @@
20
21
/// <reference types="@stdlib/types"/>
22
23
-import { typedndarray } from '@stdlib/types/ndarray';
+import { ndarray } from '@stdlib/types/ndarray';
24
25
/**
26
* Reverses a one-dimensional ndarray in-place.
@@ -41,7 +41,7 @@ import { typedndarray } from '@stdlib/types/ndarray';
41
* var arr = ndarray2array( x );
42
* // returns [ 4.0, 3.0, 2.0, 1.0 ]
43
*/
44
-declare function grev<T extends typedndarray<any> = typedndarray<any>>( arrays: [ T ] ): T;
+declare function grev<T extends ndarray>( arrays: [ T ] ): T;
45
46
47
// EXPORTS //
0 commit comments