File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 44
55<section class =" release " id =" unreleased " >
66
7- ## Unreleased (2024-09-24 )
7+ ## Unreleased (2024-09-28 )
88
99<section class =" bug-fixes " >
1010
2222
2323<details >
2424
25+ - [ ` abf0407 ` ] ( https://github.com/stdlib-js/stdlib/commit/abf040787f6598438b0100a729a8331b7f80f62f ) - ** chore:** resolve lint errors in TS files _ (by Philipp Burckhardt)_
2526- [ ` 8f72b43 ` ] ( https://github.com/stdlib-js/stdlib/commit/8f72b432c0fc81a78641d5689722ecc9671c6f02 ) - ** style:** add missing spaces around parentheses _ (by Philipp Burckhardt)_
2627- [ ` 2faaf21 ` ] ( https://github.com/stdlib-js/stdlib/commit/2faaf217eab865f9e40abbb0bf21b374595853e9 ) - ** docs:** fix example _ (by Athan Reines)_
2728- [ ` 8d3352e ` ] ( https://github.com/stdlib-js/stdlib/commit/8d3352e666353624f97e95ee0805b7d641fc775a ) - ** fix:** add missing property _ (by Athan Reines)_
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ Christopher Dambamuromo <chridam@gmail.com>
2121Dan Rose <danoftheroses@gmail.com>
2222Daniel Killenberger <daniel.killenberger@gmail.com>
2323Daniel Yu <40680511+Daniel777y@users.noreply.github.com>
24+ Debashis Maharana <debashismaharana7854@gmail.com>
2425Dominik Moritz <domoritz@gmail.com>
2526Dorrin Sotoudeh <dorrinsotoudeh123@gmail.com>
2627EuniceSim142 <77243938+EuniceSim142@users.noreply.github.com>
Original file line number Diff line number Diff line change 2222
2323/// <reference types="@stdlib/types"/>
2424
25- import { Iterator as Iter , IterableIterator } from '@stdlib/types/iter' ;
25+ import { Iterator as Iter , IterableIterator , TypedIterator } from '@stdlib/types/iter' ;
2626import { ArrayLike , RealOrComplexTypedArray , Complex128Array as Complex128ArrayInterface } from '@stdlib/types/array' ;
2727import { ComplexLike , Complex128 } from '@stdlib/types/complex' ;
2828import ArrayBuffer = require( '@stdlib/array-buffer' ) ;
@@ -38,7 +38,7 @@ interface LocaleOptions<T = unknown> {
3838 * Configuration property.
3939 */
4040 [ key : string | symbol | number ] : T | undefined ;
41- } ;
41+ }
4242
4343/**
4444* Callback invoked for each element in a source object.
@@ -1319,7 +1319,7 @@ declare class Complex128Array implements Complex128ArrayInterface {
13191319 * im = imag( z );
13201320 * // returns -3.0
13211321 */
1322- subarray ( begin ?: number , end ?: number ) : Complex64Array ;
1322+ subarray ( begin ?: number , end ?: number ) : Complex128Array ;
13231323
13241324 /**
13251325 * Serializes an array as a locale-specific string.
You can’t perform that action at this time.
0 commit comments