Skip to content

Commit 9e7f4e4

Browse files
committed
Auto-generated commit
1 parent 5c3a662 commit 9e7f4e4

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
@@ -74,6 +74,7 @@ This release closes the following issue:
7474

7575
<details>
7676

77+
- [`e6f8766`](https://github.com/stdlib-js/stdlib/commit/e6f8766fa9a929d09d40422d0f8edd0ca7a422ea) - **refactor:** extend defined interface _(by Athan Reines)_
7778
- [`8db6085`](https://github.com/stdlib-js/stdlib/commit/8db608576aaa5fd5fd1fc8b0d43915388d203f83) - **feat:** add float16 dtype support to `array/zeros-like` [(#13051)](https://github.com/stdlib-js/stdlib/pull/13051) _(by Gururaj Gurram, Athan Reines)_
7879
- [`c33404a`](https://github.com/stdlib-js/stdlib/commit/c33404ab42f5cd06257f3f02843fa23393884e80) - **style:** remove extra space and address lint failures [(#13263)](https://github.com/stdlib-js/stdlib/pull/13263) _(by Philipp Burckhardt)_
7980
- [`e954cb2`](https://github.com/stdlib-js/stdlib/commit/e954cb27d752f444cc937a94278a68ac1e22c58d) - **docs:** update `array/base/assert` TS declarations example code [(#13254)](https://github.com/stdlib-js/stdlib/pull/13254) _(by stdlib-bot)_

float16/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
/// <reference types="@stdlib/types"/>
2424

2525
import { Iterator as Iter, IterableIterator, TypedIterator } from '@stdlib/types/iter';
26-
import { ArrayLike } from '@stdlib/types/array';
26+
import { ArrayLike, Float16Array as Float16ArrayInterface } from '@stdlib/types/array';
2727
import ArrayBuffer = require( './../../../buffer' );
2828

2929
// Define a union type representing both iterable and non-iterable iterators:
@@ -272,7 +272,7 @@ type CompareFcn = ( a: number, b: number ) => number;
272272
/**
273273
* Class for creating a half-precision floating-point number array.
274274
*/
275-
declare class Float16Array {
275+
declare class Float16Array implements Float16ArrayInterface {
276276
/**
277277
* Half-precision floating-point number array constructor.
278278
*

0 commit comments

Comments
 (0)