From 27eaa47285f342b07266d5018272270070ae132c Mon Sep 17 00:00:00 2001 From: stdlib-bot Date: Sat, 29 Jun 2024 07:17:40 +0000 Subject: [PATCH] Auto-generated commit --- CHANGELOG.md | 1 + docs/types/index.d.ts | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b3c62511..c14f4b19 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2291,6 +2291,7 @@ A total of 13 people contributed to this release. Thank you to the following con
+- [`3368a35`](https://github.com/stdlib-js/stdlib/commit/3368a3503ee7df4d1c0803ada84863b4250c76fa) - **docs:** update namespace TypeScript declarations [(#2477)](https://github.com/stdlib-js/stdlib/pull/2477) _(by stdlib-bot, Athan Reines)_ - [`3a3116e`](https://github.com/stdlib-js/stdlib/commit/3a3116e3ff5bef42e4b4f39e5375b89a877ccff0) - **feat:** add boolean dtype support to `array/from-scalar` [(#2470)](https://github.com/stdlib-js/stdlib/pull/2470) _(by Jaysukh Makvana, Athan Reines)_ - [`8a55ea2`](https://github.com/stdlib-js/stdlib/commit/8a55ea29ae7cc04e9ebef428ee90900641bbabe1) - **feat:** add boolean dtype support to `array/filled` [(#2471)](https://github.com/stdlib-js/stdlib/pull/2471) _(by Jaysukh Makvana, Athan Reines)_ - [`d1ef4ee`](https://github.com/stdlib-js/stdlib/commit/d1ef4ee589cb2a7a0d8bbc0b37be3cf3b7a6aad2) - **feat:** add boolean dtype support to `array/base/count-same-value-zero` [(#2474)](https://github.com/stdlib-js/stdlib/pull/2474) _(by Jaysukh Makvana, Athan Reines)_ diff --git a/docs/types/index.d.ts b/docs/types/index.d.ts index f04a2003..9ca5ca46 100644 --- a/docs/types/index.d.ts +++ b/docs/types/index.d.ts @@ -675,7 +675,8 @@ interface Namespace { * * - If a `dtype` argument is not provided and `value` * - * - is a `number`, the default data type is the default real-valued floating-point data type. + * - is a number, the default data type is the default real-valued floating-point data type. + * - is a boolean, the default data type is the default boolean data type. * - is a complex number object of a known complex data type, the data type is the same as the provided value. * - is a complex number object of an unknown complex data type, the default data type is the default complex-valued floating-point data type. * - is any other value type, the default data type is `'generic'`.