Skip to content

Commit eb89a6d

Browse files
committed
Auto-generated commit
1 parent f3ba86a commit eb89a6d

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222

2323
<details>
2424

25+
- [`853c4b4`](https://github.com/stdlib-js/stdlib/commit/853c4b4f23a7187a6acaf937d9f7af2f079e941d) - **refactor:** remove redundant union member in `ndarray/base/some` [(#12634)](https://github.com/stdlib-js/stdlib/pull/12634) _(by Philipp Burckhardt)_
2526
- [`81bb9b4`](https://github.com/stdlib-js/stdlib/commit/81bb9b4388146ac422e75697d177c2beeaf47d41) - **docs:** update `ndarray/iter` TypeScript declarations [(#12592)](https://github.com/stdlib-js/stdlib/pull/12592) _(by stdlib-bot)_
2627
- [`e08276d`](https://github.com/stdlib-js/stdlib/commit/e08276d789ba1671769175bf5d2c3c5f587f6dca) - **feat:** update `ndarray` TypeScript declarations [(#12593)](https://github.com/stdlib-js/stdlib/pull/12593) _(by stdlib-bot)_
2728
- [`4c3829b`](https://github.com/stdlib-js/stdlib/commit/4c3829b6cd5973e47ffe7c3b5a88ed1bfb7c63f6) - **chore:** propagate recent develop fixes to sibling packages [(#12558)](https://github.com/stdlib-js/stdlib/pull/12558) _(by Philipp Burckhardt)_

base/some/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/// <reference types="@stdlib/types"/>
2222

23-
import { ndarray, typedndarray, genericndarray } from '@stdlib/types/ndarray';
23+
import { ndarray, typedndarray } from '@stdlib/types/ndarray';
2424

2525
/**
2626
* Tests whether at least `n` elements in an ndarray are truthy.
@@ -55,7 +55,7 @@ import { ndarray, typedndarray, genericndarray } from '@stdlib/types/ndarray';
5555
* var out = some( [ x, n ] );
5656
* // returns true
5757
*/
58-
declare function some( arrays: [ ndarray, typedndarray<number> | genericndarray<number> ] ): boolean;
58+
declare function some( arrays: [ ndarray, typedndarray<number> ] ): boolean;
5959

6060

6161
// EXPORTS //

0 commit comments

Comments
 (0)