From 5980f1077395806422d957bd8caf1cbf682d4bd1 Mon Sep 17 00:00:00 2001 From: stdlib-bot <82920195+stdlib-bot@users.noreply.github.com> Date: Sat, 4 Jul 2026 03:12:34 +0000 Subject: [PATCH] feat: update `array/base/assert` TypeScript declarations Signed-off-by: stdlib-bot <82920195+stdlib-bot@users.noreply.github.com> --- .../@stdlib/array/base/assert/docs/types/index.d.ts | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/array/base/assert/docs/types/index.d.ts b/lib/node_modules/@stdlib/array/base/assert/docs/types/index.d.ts index 6ad2f1b81606..bd95edaec3c4 100644 --- a/lib/node_modules/@stdlib/array/base/assert/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/array/base/assert/docs/types/index.d.ts @@ -297,6 +297,9 @@ interface Namespace { * bool = ns.isComplexFloatingPointDataType( 'complex128' ); * // returns true * + * bool = ns.isComplexFloatingPointDataType( 'float16' ); + * // returns false + * * bool = ns.isComplexFloatingPointDataType( 'float32' ); * // returns false * @@ -396,7 +399,10 @@ interface Namespace { * @returns boolean indicating whether an input value is a supported array data type * * @example - * var bool = ns.isDataType( 'float32' ); + * var bool = ns.isDataType( 'float16' ); + * // returns true + * + * bool = ns.isDataType( 'float32' ); * // returns true * * bool = ns.isDataType( 'float64' ); @@ -438,7 +444,10 @@ interface Namespace { * @returns boolean indicating whether an input value is a supported array floating-point data type * * @example - * var bool = ns.isFloatingPointDataType( 'float32' ); + * var bool = ns.isFloatingPointDataType( 'float16' ); + * // returns true + * + * bool = ns.isFloatingPointDataType( 'float32' ); * // returns true * * bool = ns.isFloatingPointDataType( 'float64' );