Skip to content

Commit

Permalink
feat: update namespace TypeScript declarations
Browse files Browse the repository at this point in the history
PR-URL: #3259

Co-authored-by: Philipp Burckhardt <[email protected]>
Reviewed-by: Philipp Burckhardt <[email protected]>
Signed-off-by: stdlib-bot <[email protected]>
  • Loading branch information
stdlib-bot and Planeshifter authored Nov 28, 2024
1 parent 904955f commit 9818fa6
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 13 deletions.
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/array/base/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1038,7 +1038,7 @@ interface Namespace {
* ns.bquaternary2d( [ x, y, z, w, out ], shapes, add );
*
* console.log( out );
* // => [ [ 4.0, 8.0 ], [ 12.0, 16.0 ] ]
* // => [ [ 4.0, 4.0 ], [ 4.0, 4.0 ] ]
*/
bquaternary2d: typeof bquaternary2d;

Expand Down Expand Up @@ -1115,7 +1115,7 @@ interface Namespace {
* ns.bternary2d( [ x, y, z, out ], shapes, add );
*
* console.log( out );
* // => [ [ 3.0, 6.0 ], [ 9.0, 12.0 ] ]
* // => [ [ 3.0, 3.0 ], [ 3.0, 3.0 ] ]
*/
bternary2d: typeof bternary2d;

Expand Down
6 changes: 3 additions & 3 deletions lib/node_modules/@stdlib/blas/ext/base/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -958,7 +958,7 @@ interface Namespace {
*
* @param N - number of indexed elements
* @param x - input array
* @param stride - stride length
* @param strideX - stride length
* @returns sum
*
* @example
Expand All @@ -984,7 +984,7 @@ interface Namespace {
*
* @param N - number of indexed elements
* @param x - input array
* @param stride - stride length
* @param strideX - stride length
* @returns sum
*
* @example
Expand All @@ -1010,7 +1010,7 @@ interface Namespace {
*
* @param N - number of indexed elements
* @param x - input array
* @param stride - stride length
* @param strideX - stride length
* @returns sum
*
* @example
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,12 @@

// TypeScript Version: 4.1

/* eslint-disable max-lines */
/* eslint-disable max-lines, @typescript-eslint/no-empty-interface */

/**
* Interface describing the `tools` namespace.
*/
interface Namespace {

}
interface Namespace {}

/**
* Pseudorandom number generator strided array function tools.
Expand Down
6 changes: 2 additions & 4 deletions lib/node_modules/@stdlib/utils/dsv/base/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,12 @@

// TypeScript Version: 4.1

/* eslint-disable max-lines */
/* eslint-disable max-lines, @typescript-eslint/no-empty-interface */

/**
* Interface describing the `base` namespace.
*/
interface Namespace {

}
interface Namespace {}

/**
* Standard base utilities for working with data formatted as delimiter-separated values (DSV).
Expand Down

1 comment on commit 9818fa6

@stdlib-bot
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage Report

Package Statements Branches Functions Lines
array/base $\color{green}1635/1635$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}0/0$
$\color{green}+100.00\%$
$\color{green}1635/1635$
$\color{green}+100.00\%$
blas/ext/base $\color{green}1068/1068$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}0/0$
$\color{green}+100.00\%$
$\color{green}1068/1068$
$\color{green}+100.00\%$
random/strided/tools $\color{green}69/69$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}0/0$
$\color{green}+100.00\%$
$\color{green}69/69$
$\color{green}+100.00\%$
utils/dsv/base $\color{green}51/51$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}0/0$
$\color{green}+100.00\%$
$\color{green}51/51$
$\color{green}+100.00\%$

The above coverage report was generated for the changes in this push.

Please sign in to comment.