Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat!: update namespace TypeScript declarations #4828

Merged
merged 1 commit into from
Jan 21, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 0 additions & 31 deletions lib/node_modules/@stdlib/stats/base/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ import cumax = require( '@stdlib/stats/base/cumax' );
import cumaxabs = require( '@stdlib/stats/base/cumaxabs' );
import cumin = require( '@stdlib/stats/base/cumin' );
import cuminabs = require( '@stdlib/stats/base/cuminabs' );
import dcumax = require( '@stdlib/stats/strided/dcumax' );
import dcumaxabs = require( '@stdlib/stats/base/dcumaxabs' );
import dcumin = require( '@stdlib/stats/base/dcumin' );
import dcuminabs = require( '@stdlib/stats/base/dcuminabs' );
Expand Down Expand Up @@ -346,36 +345,6 @@ interface Namespace {
*/
cuminabs: typeof cuminabs;

/**
* Computes the cumulative maximum of double-precision floating-point strided array elements.
*
* @param N - number of indexed elements
* @param x - input array
* @param strideX - `x` stride length
* @param y - output array
* @param strideY - `y` stride length
* @returns output array
*
* @example
* var Float64Array = require( '@stdlib/array/float64' );
*
* var x = new Float64Array( [ 1.0, -2.0, 2.0 ] );
* var y = new Float64Array( x.length );
*
* ns.dcumax( x.length, x, 1, y, 1 );
* // y => <Float64Array>[ 1.0, 1.0, 2.0 ]
*
* @example
* var Float64Array = require( '@stdlib/array/float64' );
*
* var x = new Float64Array( [ 1.0, -2.0, 2.0 ] );
* var y = new Float64Array( x.length );
*
* ns.dcumax.ndarray( x.length, x, 1, 0, y, 1, 0 );
* // y => <Float64Array>[ 1.0, 1.0, 2.0 ]
*/
dcumax: typeof dcumax;

/**
* Computes the cumulative maximum absolute value of double-precision floating-point strided array elements.
*
Expand Down
Loading