Skip to content

Commit 9818fa6

Browse files
feat: update namespace TypeScript declarations
PR-URL: #3259 Co-authored-by: Philipp Burckhardt <[email protected]> Reviewed-by: Philipp Burckhardt <[email protected]> Signed-off-by: stdlib-bot <[email protected]>
1 parent 904955f commit 9818fa6

File tree

4 files changed

+9
-13
lines changed

4 files changed

+9
-13
lines changed

lib/node_modules/@stdlib/array/base/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1038,7 +1038,7 @@ interface Namespace {
10381038
* ns.bquaternary2d( [ x, y, z, w, out ], shapes, add );
10391039
*
10401040
* console.log( out );
1041-
* // => [ [ 4.0, 8.0 ], [ 12.0, 16.0 ] ]
1041+
* // => [ [ 4.0, 4.0 ], [ 4.0, 4.0 ] ]
10421042
*/
10431043
bquaternary2d: typeof bquaternary2d;
10441044

@@ -1115,7 +1115,7 @@ interface Namespace {
11151115
* ns.bternary2d( [ x, y, z, out ], shapes, add );
11161116
*
11171117
* console.log( out );
1118-
* // => [ [ 3.0, 6.0 ], [ 9.0, 12.0 ] ]
1118+
* // => [ [ 3.0, 3.0 ], [ 3.0, 3.0 ] ]
11191119
*/
11201120
bternary2d: typeof bternary2d;
11211121

lib/node_modules/@stdlib/blas/ext/base/docs/types/index.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -958,7 +958,7 @@ interface Namespace {
958958
*
959959
* @param N - number of indexed elements
960960
* @param x - input array
961-
* @param stride - stride length
961+
* @param strideX - stride length
962962
* @returns sum
963963
*
964964
* @example
@@ -984,7 +984,7 @@ interface Namespace {
984984
*
985985
* @param N - number of indexed elements
986986
* @param x - input array
987-
* @param stride - stride length
987+
* @param strideX - stride length
988988
* @returns sum
989989
*
990990
* @example
@@ -1010,7 +1010,7 @@ interface Namespace {
10101010
*
10111011
* @param N - number of indexed elements
10121012
* @param x - input array
1013-
* @param stride - stride length
1013+
* @param strideX - stride length
10141014
* @returns sum
10151015
*
10161016
* @example

lib/node_modules/@stdlib/random/strided/tools/docs/types/index.d.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,12 @@
1818

1919
// TypeScript Version: 4.1
2020

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

2323
/**
2424
* Interface describing the `tools` namespace.
2525
*/
26-
interface Namespace {
27-
28-
}
26+
interface Namespace {}
2927

3028
/**
3129
* Pseudorandom number generator strided array function tools.

lib/node_modules/@stdlib/utils/dsv/base/docs/types/index.d.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,12 @@
1818

1919
// TypeScript Version: 4.1
2020

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

2323
/**
2424
* Interface describing the `base` namespace.
2525
*/
26-
interface Namespace {
27-
28-
}
26+
interface Namespace {}
2927

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

0 commit comments

Comments
 (0)