From 34acdf7f91bcde40fcf5c887abae3e31f3cf45f7 Mon Sep 17 00:00:00 2001 From: stdlib-bot <82920195+stdlib-bot@users.noreply.github.com> Date: Sun, 8 Mar 2026 03:08:43 +0000 Subject: [PATCH] feat: update `blas/ext/base/ndarray` TypeScript declarations Signed-off-by: stdlib-bot <82920195+stdlib-bot@users.noreply.github.com> --- .../@stdlib/blas/ext/base/ndarray/docs/types/index.d.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/lib/node_modules/@stdlib/blas/ext/base/ndarray/docs/types/index.d.ts b/lib/node_modules/@stdlib/blas/ext/base/ndarray/docs/types/index.d.ts index 9f54c6eaa142..71610fd8a513 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/ndarray/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/blas/ext/base/ndarray/docs/types/index.d.ts @@ -164,7 +164,6 @@ interface Namespace { * @example * var Float64Array = require( '@stdlib/array/float64' ); * var ndarray = require( '@stdlib/ndarray/base/ctor' ); - * var ndarray2array = require( '@stdlib/ndarray/to-array' ); * var scalar2ndarray = require( '@stdlib/ndarray/from-scalar' ); * * var xbuf = new Float64Array( [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ] ); @@ -183,10 +182,7 @@ interface Namespace { * }); * * var out = ns.dlinspace( [ x, start, stop, endpoint ] ); - * // returns - * - * var arr = ndarray2array( out ); - * // returns [ 0.0, 20.0, 40.0, 60.0, 80.0, 100.0 ] + * // returns [ 0.0, 20.0, 40.0, 60.0, 80.0, 100.0 ] */ dlinspace: typeof dlinspace;