Skip to content
Merged
Show file tree
Hide file tree
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
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
Loading