Skip to content

Commit 4eb922f

Browse files
authored
fix: update types
Signed-off-by: Athan <kgryte@gmail.com>
1 parent ac4c753 commit 4eb922f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • lib/node_modules/@stdlib/stats/base/ndarray/snanmskmin/docs/types

lib/node_modules/@stdlib/stats/base/ndarray/snanmskmin/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 { ndarray } from '@stdlib/types/ndarray';
23+
import { float32ndarray, uint8ndarray } from '@stdlib/types/ndarray';
2424

2525
/**
2626
* 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';
4242
* var v = snanmskmin( [ x, mask ] );
4343
* // returns -2.0
4444
*/
45-
declare function snanmskmin<T extends ndarray = ndarray>( arrays: [ T, T ] ): number;
45+
declare function snanmskmin( arrays: [ float32ndarray, uint8ndarray ] ): number;
4646

4747

4848
// EXPORTS //

0 commit comments

Comments
 (0)