From a94f8c53e037afb3ab8ef0fc8afe34ac41ca91a7 Mon Sep 17 00:00:00 2001 From: stdlib-bot <82920195+stdlib-bot@users.noreply.github.com> Date: Sat, 6 Dec 2025 02:38:42 +0000 Subject: [PATCH] feat: update `blas/ext/base/wasm` TypeScript declarations Signed-off-by: stdlib-bot <82920195+stdlib-bot@users.noreply.github.com> --- .../@stdlib/blas/ext/base/wasm/docs/types/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/blas/ext/base/wasm/docs/types/index.d.ts b/lib/node_modules/@stdlib/blas/ext/base/wasm/docs/types/index.d.ts index fb561f08f4b1..dddb02b068e3 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/wasm/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/blas/ext/base/wasm/docs/types/index.d.ts @@ -50,7 +50,7 @@ interface Namespace { * var x = new Float64Array( [ 1.0, -2.0, 2.0 ] ); * * ns.dapx.main( 3, 5.0, x, 1 ); - * // x => [ 6.0, 3.0, 7.0 ] + * // x => Float64Array[ 6.0, 3.0, 7.0 ] * * @example * var Float64Array = require( '@stdlib/array/float64' ); @@ -58,7 +58,7 @@ interface Namespace { * var x = new Float64Array( [ 2.0, 1.0, 2.0, -2.0, -2.0, 2.0, 3.0, 4.0 ] ); * * ns.dapx.ndarray( 4, 5.0, x, 2, 1 ); - * // x => [ 2.0, 6.0, 2.0, 3.0, -2.0, 7.0, 3.0, 9.0 ] + * // x => Float64Array[ 7.0, 6.0, 7.0, 3.0, 3.0, 7.0, 8.0, 9.0 ] */ dapx: typeof dapx;