Skip to content

Commit ee76e11

Browse files
committed
Auto-generated commit
1 parent 6f84d1c commit ee76e11

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2026-07-05)
7+
## Unreleased (2026-07-06)
88

99
<section class="features">
1010

@@ -20,6 +20,7 @@
2020

2121
### Bug Fixes
2222

23+
- [`6b88a63`](https://github.com/stdlib-js/stdlib/commit/6b88a637281fd936f6526c40df69299cf72463c5) - add missing index signature to Float16Array class declaration [(#13332)](https://github.com/stdlib-js/stdlib/pull/13332)
2324
- [`5b6be64`](https://github.com/stdlib-js/stdlib/commit/5b6be64587688c406328bccb5e3c3bb2bd60e5ef) - avoid cyclic dependency and update return annotations
2425
- [`003cb6e`](https://github.com/stdlib-js/stdlib/commit/003cb6ec82ce83ad9dd4d972aabe316a10da382d) - ensure error message is consistent with project conventions
2526
- [`4f28e69`](https://github.com/stdlib-js/stdlib/commit/4f28e6916d4242d02918457f6480b01d42f980c9) - ensure consistent error messages
@@ -34,6 +35,7 @@
3435

3536
<details>
3637

38+
- [`6b88a63`](https://github.com/stdlib-js/stdlib/commit/6b88a637281fd936f6526c40df69299cf72463c5) - **fix:** add missing index signature to Float16Array class declaration [(#13332)](https://github.com/stdlib-js/stdlib/pull/13332) _(by Philipp Burckhardt, Athan Reines)_
3739
- [`e6f8766`](https://github.com/stdlib-js/stdlib/commit/e6f8766fa9a929d09d40422d0f8edd0ca7a422ea) - **refactor:** extend defined interface _(by Athan Reines)_
3840
- [`5b6be64`](https://github.com/stdlib-js/stdlib/commit/5b6be64587688c406328bccb5e3c3bb2bd60e5ef) - **fix:** avoid cyclic dependency and update return annotations _(by Athan Reines)_
3941
- [`3901886`](https://github.com/stdlib-js/stdlib/commit/3901886ff5ff6bdbcfd65ea52109fee0b0e1ff03) - **docs:** fix examples and descriptions in top-level `array` declarations [(#12375)](https://github.com/stdlib-js/stdlib/pull/12375) _(by Philipp Burckhardt, Athan Reines)_

docs/types/index.d.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -340,6 +340,11 @@ declare class Float16Array implements Float16ArrayInterface {
340340
*/
341341
constructor( arg?: number | ArrayLike<number> | ArrayBuffer | Iterable<number>, byteOffset?: number, length?: number );
342342

343+
/**
344+
* Indexed properties.
345+
*/
346+
[ index: number ]: number;
347+
343348
/**
344349
* Returns an array element located at integer position (index) `i`, with support for both nonnegative and negative integer indices.
345350
*

0 commit comments

Comments
 (0)