File tree 3 files changed +6
-4
lines changed
3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 4
4
5
5
<section class =" release " id =" unreleased " >
6
6
7
- ## Unreleased (2024-09-24 )
7
+ ## Unreleased (2024-09-28 )
8
8
9
9
<section class =" bug-fixes " >
10
10
22
22
23
23
<details >
24
24
25
+ - [ ` abf0407 ` ] ( https://github.com/stdlib-js/stdlib/commit/abf040787f6598438b0100a729a8331b7f80f62f ) - ** chore:** resolve lint errors in TS files _ (by Philipp Burckhardt)_
25
26
- [ ` 8f72b43 ` ] ( https://github.com/stdlib-js/stdlib/commit/8f72b432c0fc81a78641d5689722ecc9671c6f02 ) - ** style:** add missing spaces around parentheses _ (by Philipp Burckhardt)_
26
27
- [ ` 2faaf21 ` ] ( https://github.com/stdlib-js/stdlib/commit/2faaf217eab865f9e40abbb0bf21b374595853e9 ) - ** docs:** fix example _ (by Athan Reines)_
27
28
- [ ` 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>
21
21
Dan Rose <danoftheroses@gmail.com>
22
22
Daniel Killenberger <daniel.killenberger@gmail.com>
23
23
Daniel Yu <40680511+Daniel777y@users.noreply.github.com>
24
+ Debashis Maharana <debashismaharana7854@gmail.com>
24
25
Dominik Moritz <domoritz@gmail.com>
25
26
Dorrin Sotoudeh <dorrinsotoudeh123@gmail.com>
26
27
EuniceSim142 <77243938+EuniceSim142@users.noreply.github.com>
Original file line number Diff line number Diff line change 22
22
23
23
/// <reference types="@stdlib/types"/>
24
24
25
- import { Iterator as Iter , IterableIterator } from '@stdlib/types/iter' ;
25
+ import { Iterator as Iter , IterableIterator , TypedIterator } from '@stdlib/types/iter' ;
26
26
import { ArrayLike , RealOrComplexTypedArray , Complex128Array as Complex128ArrayInterface } from '@stdlib/types/array' ;
27
27
import { ComplexLike , Complex128 } from '@stdlib/types/complex' ;
28
28
import ArrayBuffer = require( '@stdlib/array-buffer' ) ;
@@ -38,7 +38,7 @@ interface LocaleOptions<T = unknown> {
38
38
* Configuration property.
39
39
*/
40
40
[ key : string | symbol | number ] : T | undefined ;
41
- } ;
41
+ }
42
42
43
43
/**
44
44
* Callback invoked for each element in a source object.
@@ -1319,7 +1319,7 @@ declare class Complex128Array implements Complex128ArrayInterface {
1319
1319
* im = imag( z );
1320
1320
* // returns -3.0
1321
1321
*/
1322
- subarray ( begin ?: number , end ?: number ) : Complex64Array ;
1322
+ subarray ( begin ?: number , end ?: number ) : Complex128Array ;
1323
1323
1324
1324
/**
1325
1325
* Serializes an array as a locale-specific string.
You can’t perform that action at this time.
0 commit comments