From 8c42679a8c9c91098a39c891312a66578be7cb66 Mon Sep 17 00:00:00 2001 From: stdlib-bot <82920195+stdlib-bot@users.noreply.github.com> Date: Wed, 24 Dec 2025 02:43:55 +0000 Subject: [PATCH] feat: update `ndarray` TypeScript declarations Signed-off-by: stdlib-bot <82920195+stdlib-bot@users.noreply.github.com> --- .../@stdlib/ndarray/docs/types/index.d.ts | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/lib/node_modules/@stdlib/ndarray/docs/types/index.d.ts b/lib/node_modules/@stdlib/ndarray/docs/types/index.d.ts index 38767c87cd68..55c0849d9750 100644 --- a/lib/node_modules/@stdlib/ndarray/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/ndarray/docs/types/index.d.ts @@ -606,10 +606,7 @@ interface Namespace { * * // Perform reduction: * var out = ns.countFalsy( x ); - * // returns - * - * var v = out.get(); - * // returns 1 + * // returns [ 1 ] * * @example * var Float64Array = require( '@stdlib/array/float64' ); @@ -638,10 +635,7 @@ interface Namespace { * * // Perform reduction: * var out = ns.countFalsy.assign( x, y ); - * // returns - * - * var v = out.get(); - * // returns 1 + * // returns [ 1 ] */ countFalsy: typeof countFalsy; @@ -1285,7 +1279,7 @@ interface Namespace { * @param options - function options * @param options.dims - list of dimensions over which to perform a reduction * @param options.keepdims - boolean indicating whether the reduced dimensions should be included in the returned ndarray as singleton dimensions (default: false) - * @param options.sentinelValue - sentinel value + * @param options.sentinel - sentinel value * @param predicate - predicate function * @param thisArg - predicate execution context * @returns output ndarray