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.
blas/ext/base/ndarray/gsort
1 parent 359a92f commit c26d8b5Copy full SHA for c26d8b5
1 file changed
lib/node_modules/@stdlib/blas/ext/base/ndarray/gsort/docs/types/index.d.ts
@@ -20,7 +20,7 @@
20
21
/// <reference types="@stdlib/types"/>
22
23
-import { typedndarray, genericndarray } from '@stdlib/types/ndarray';
+import { typedndarray } from '@stdlib/types/ndarray';
24
25
/**
26
* Sorts a one-dimensional ndarray.
@@ -50,7 +50,7 @@ import { typedndarray, genericndarray } from '@stdlib/types/ndarray';
50
* var out = gsort( [ x, ord ] );
51
* // returns <ndarray>[ -4.0, -2.0, 1.0, 3.0 ]
52
*/
53
-declare function gsort<T extends typedndarray<unknown> | genericndarray<unknown> = typedndarray<unknown>>( arrays: [ T, typedndarray<number> ] ): T;
+declare function gsort<T extends typedndarray<unknown> = typedndarray<unknown>>( arrays: [ T, typedndarray<number> ] ): T;
54
55
56
// EXPORTS //
0 commit comments