From 711915d88ca94f59f01a640a7ddf27fc672d1b44 Mon Sep 17 00:00:00 2001 From: stdlib-bot <82920195+stdlib-bot@users.noreply.github.com> Date: Sat, 27 Dec 2025 02:43:12 +0000 Subject: [PATCH] feat: update `ndarray/base` TypeScript declarations Signed-off-by: stdlib-bot <82920195+stdlib-bot@users.noreply.github.com> --- lib/node_modules/@stdlib/ndarray/base/docs/types/index.d.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/ndarray/base/docs/types/index.d.ts b/lib/node_modules/@stdlib/ndarray/base/docs/types/index.d.ts index c90d15685630..9335fda77c23 100644 --- a/lib/node_modules/@stdlib/ndarray/base/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/ndarray/base/docs/types/index.d.ts @@ -3870,6 +3870,7 @@ interface Namespace { * @param ndims - number of dimensions in the output array * @param x - input array * @param dims - dimension indices + * @param writable - boolean indicating whether a returned array should be writable * @returns output array * * @example @@ -3881,7 +3882,7 @@ interface Namespace { * var shx = x.shape; * // returns [ 2, 2 ] * - * var y = ns.spreadDimensions( 5, x, [ 1, 3 ] ); + * var y = ns.spreadDimensions( 5, x, [ 1, 3 ], false ); * // returns * * var shy = y.shape;