-
Notifications
You must be signed in to change notification settings - Fork 12.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Big(Int|Uint)64ArrayConstructor: missing from Iterable #45198
Open
Labels
Domain: lib.d.ts
The issue relates to the different libraries shipped with TypeScript
Fix Available
A PR has been opened for this issue
Rescheduled
This issue was previously scheduled to an earlier milestone
Milestone
Comments
andrewbranch
added
the
Domain: lib.d.ts
The issue relates to the different libraries shipped with TypeScript
label
Aug 4, 2021
RyanCavanaugh
added
the
Rescheduled
This issue was previously scheduled to an earlier milestone
label
Dec 15, 2021
mfulton26
added a commit
to mfulton26/TypeScript
that referenced
this issue
Jul 9, 2024
Each concrete typed array type and constructor share common interfaces. Library types can be defined extending base interfaces: 1. higher code reuse 2. less duplication 3. easier maintenance (less error prone) Closes microsoft#15402 Fixes microsoft#45198
mfulton26
added a commit
to mfulton26/TypeScript
that referenced
this issue
Jul 9, 2024
Each concrete typed array type and constructor share common interfaces. Library types can be defined extending base interfaces: 1. higher code reuse 2. less duplication 3. easier maintenance (less error prone) Closes microsoft#15402 Fixes microsoft#45198
mfulton26
added a commit
to mfulton26/TypeScript
that referenced
this issue
Jul 9, 2024
Each concrete typed array type and constructor share common interfaces. Library types can be defined extending base interfaces: 1. higher code reuse 2. less duplication 3. easier maintenance (less error prone) Closes microsoft#15402 Fixes microsoft#45198
mfulton26
added a commit
to mfulton26/TypeScript
that referenced
this issue
Jul 9, 2024
Each concrete typed array type and constructor share common interfaces. Library types can be defined extending base interfaces: 1. higher code reuse 2. less duplication 3. easier maintenance (less error prone) Closes microsoft#15402 Fixes microsoft#45198
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Domain: lib.d.ts
The issue relates to the different libraries shipped with TypeScript
Fix Available
A PR has been opened for this issue
Rescheduled
This issue was previously scheduled to an earlier milestone
lib Update Request
Configuration Check
My compilation target is
ESNext
and my lib isthe default
.Missing / Incorrect Definition
BigInt64Array.from
is missing an iterable overload (same for BigUint64Array).Sample Code
Documentation Link
TypedArray.from() - JavaScript | MDN
The text was updated successfully, but these errors were encountered: