From 4e1677e724a372dc9ec8c6246c21d863efc935cd Mon Sep 17 00:00:00 2001 From: stdlib-bot <82920195+stdlib-bot@users.noreply.github.com> Date: Thu, 18 Dec 2025 02:42:09 +0000 Subject: [PATCH] feat: update `complex/base` TypeScript declarations Signed-off-by: stdlib-bot <82920195+stdlib-bot@users.noreply.github.com> --- lib/node_modules/@stdlib/complex/base/docs/types/index.d.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/node_modules/@stdlib/complex/base/docs/types/index.d.ts b/lib/node_modules/@stdlib/complex/base/docs/types/index.d.ts index a6e6d934939b..4fd49c0c30b7 100644 --- a/lib/node_modules/@stdlib/complex/base/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/complex/base/docs/types/index.d.ts @@ -20,6 +20,7 @@ /* eslint-disable max-lines */ +import assert = require( '@stdlib/complex/base/assert' ); import cast = require( '@stdlib/complex/base/cast-return' ); import parse = require( '@stdlib/complex/base/parse' ); import wrap = require( '@stdlib/complex/base/wrap-function' ); @@ -28,6 +29,11 @@ import wrap = require( '@stdlib/complex/base/wrap-function' ); * Interface describing the `base` namespace. */ interface Namespace { + /** + * Base (i.e., lower-level) complex number assertion functions. + */ + assert: typeof assert; + /** * Wraps an n-ary function and casts a function's return value to a complex number. *