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 ac4c753 commit 4eb922fCopy full SHA for 4eb922f
1 file changed
lib/node_modules/@stdlib/stats/base/ndarray/snanmskmin/docs/types/index.d.ts
@@ -20,7 +20,7 @@
20
21
/// <reference types="@stdlib/types"/>
22
23
-import { ndarray } from '@stdlib/types/ndarray';
+import { float32ndarray, uint8ndarray } from '@stdlib/types/ndarray';
24
25
/**
26
* Computes the minimum value of a one-dimensional single-precision floating-point ndarray according to a mask, ignoring `NaN` values.
@@ -42,7 +42,7 @@ import { ndarray } from '@stdlib/types/ndarray';
42
* var v = snanmskmin( [ x, mask ] );
43
* // returns -2.0
44
*/
45
-declare function snanmskmin<T extends ndarray = ndarray>( arrays: [ T, T ] ): number;
+declare function snanmskmin( arrays: [ float32ndarray, uint8ndarray ] ): number;
46
47
48
// EXPORTS //
0 commit comments