Description
lib Update Request
While working on uhyo/better-typescript-lib, I've found couples of issues in the built-in lib. While reflecting some of the changes there will cause compatibility issues and they are not included in the list below, others are worth reporting because either they are serious or they are not breaking changes. Here is the list:
es2015.collection.d.ts
-
WeakMapConstructor
: The type ofentries
should change fromreadonly [K, V][] | null
toreadonly (readonly [K, V])[] | null
to keep it consistent withMapConstructor
es2015.core.d.ts
-
{Array<T>, ReadonlyArray<T>}.find
:- The
this
parameter of the first parameter in the first overload is incorrectly typedvoid
, which should be removed - Missing documentation for the second overload
- The
-
ArrayConstructor.from
: The first parameter should be renamedsource
to keep consistency across multiple overloads from other lib files. Ines2015.iterable.d.ts
it's writteniterable: Iterable<T> | ArrayLike<T>
and that's misleading. It's also namedsource
in the spec text. (The documentation should be modify toan array-like or iterable object
too to keep it the same across all files) -
(Excluded unless Suggestion: one-sided or fine-grained type guards #15048 resolves)NumberConstructor.{isFinite, isInteger, isNaN, isSafeInteger}
: Per the spec, the return type can be changed to the type predicatenumber is number
-
ObjectConstructor.assign
: All parameters but the first should be made writable ({ -readonly [P in keyof T]: T[P] }
). -
ObjectConstructor.{getOwnPropertySymbols, setPrototypeOf}
: 🟠 The first parameter should extends{}
. See the es2017.object.d.ts section below -
String.normalize
: 🟠 Per the spec, the second overload should be removed to prevent a runtime error. The first parameter should then be made optional because it's defaulted to"NFC"
.
es2015.iterable.d.ts
-
{ArrayConstructor, %TypedArray%Constructor}.from
: See the es2015.core.d.ts section above
es2015.reflect.d.ts
Crossed out unless @uhyo thinks them worth changing and gives some illustrations.
-
Reflect.construct
:newTarget
can be widen toany
-
Reflect.getPrototypeOf
: The return type can be narrowed toobject
. It's impractical to get anull
here -
Reflect.setPrototypeOf
:proto
can be widen toany
es2015.symbol.wellknown.d.ts
-
(Fix already available in Fix definition ofArray<T>[Symbol.unscopables]
: Should be a record.Array.prototype[Symbol.unscopables]
#42566)
es2017.object.d.ts
-
Object.getOwnPropertyDescriptors
: 🟠 Per the spec, these methods start with either aToObject
orRequireObjectCoercible
operation, which throws aTypeError
with a nullish value. Starting from TypeScript 4.8 with Improve intersection reduction and CFA for truthy, equality, and typeof checks #49119,{}
now precisely represents any nullish value. Thus, the first parameter of these methods should now be typed{}
to prevent runtime errors.
es2019.array.d.ts
-
{Array<T>, ReadonlyArray<T>}.flatMap
: TheThis
type parameter should be removed to keep consistency with other array prototype methods in the current library
es2020.bigint.d.ts
-
%TypedArray%.{every, find, findIndex, some}
: The return type of the first parameter can be widen toany
to keep consistency with other array prototype methods -
%TypedArray%Constructor.from
: Missing documentation for the second overload. Also see the es2015.core.d.ts section above
es2021.string.d.ts
-
String.replaceAll
: missing{ [Symbol.replace] }
overloads. It should be defined exactly the same asString.replace
(The documentation should be modify toA string or RegExp search value
too to keep it the same across all files)
es2022.object.d.ts
-
Object.hasOwn
: Per the spec,o
can be widen to{}
es5.d.ts
-
ObjectConstructor.{getPrototypeOf, getOwnPropertyDescriptor, getOwnPropertyNames}
: 🟠 The first parameter should extends{}
. See the es2017.object.d.ts section above -
{CallableFunction, NewableFunction}.apply
: Missing documentation for the second overload -
{CallableFunction, NewableFunction}.bind
: Consider rewrite it like what we've done -
{Array<T>, ReadonlyArray<T>}.every
: 🟠 The return type of the first overload can be typedthis is { [K in keyof this]: S }
to support tuples.Unlike other solutions, this change is small enough that it should not break anything.It does affect some important tests, so a separate PR will be opened. -
ReadonlyArray<T>.map
: 🟠 The return type can be typed{ -readonly [K in keyof this]: U }
to support tuples. Will be in the follow-up PR -
Array<T>.map
: 🟠 The return type can be typed{ [K in keyof this]: U }
to support tuples. Will be in the follow-up PR -
{Array<T>, ReadonlyArray<T>}.{reduce, reduceRight}
: Missing documentation for the second overload -
%TypedArray%.{find, findIndex}
: The return type of the first parameter can be widen toany
to keep consistency with other array prototype methods -
%TypedArray%Constructor.from
: See the es2015.core.d.ts section above
🟠 Breaking Changes (non-exhaustive)
If the TypeScript Team is fine with certain of these changes, I am happy to open a PR for it.
Thanks for reading till the end. That is all.
P.S. I am not sure if I shouldn't put all of the above into a single issue, but opening numerous issues to reflect all of these suggestions will be too many for me. I wonder how many PRs would be comfortable to the Team and how should I split it if I'm gonna work on this.