diff --git a/lib/node_modules/@stdlib/stats/base/cumax/docs/types/test.ts b/lib/node_modules/@stdlib/stats/base/cumax/docs/types/test.ts index 0d97261e6345..851a57c70f89 100644 --- a/lib/node_modules/@stdlib/stats/base/cumax/docs/types/test.ts +++ b/lib/node_modules/@stdlib/stats/base/cumax/docs/types/test.ts @@ -27,7 +27,7 @@ import cumax = require( './index' ); const x = new Float64Array( 10 ); const y = new Float64Array( 10 ); - cumax( x.length, x, 1, y, 1 ); // $ExpectType NumericArray + cumax( x.length, x, 1, y, 1 ); // $ExpectType Float64Array cumax( x.length, new AccessorArray( x ), 1, new AccessorArray( y ), 1 ); // $ExpectType AccessorArray } @@ -125,7 +125,7 @@ import cumax = require( './index' ); const x = new Float64Array( 10 ); const y = new Float64Array( 10 ); - cumax.ndarray( x.length, x, 1, 0, y, 1, 0 ); // $ExpectType NumericArray + cumax.ndarray( x.length, x, 1, 0, y, 1, 0 ); // $ExpectType Float64Array cumax.ndarray( x.length, new AccessorArray( x ), 1, 0, new AccessorArray( y ), 1, 0 ); // $ExpectType AccessorArray }