We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Array
#44373
#53489
interface Fizz { id: number; fizz: string; } interface Buzz { id: number; buzz: string; } ([] as Fizz[] | Buzz[]).filter(item ==> item.id < 5); // not allowed
filter
find
reduce
#53761
enum
Record<A, B>[A]
A
K
Record<A, B>[K]
Partial<...>
getUnionType
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Unioning Signatures Across
Array
Methods#44373
#53489
filter
,find
,reduce
have multiple signatures.Slow Type-Checking with Large Enum
#53761
enum
type - 1500 elements.Record<A, B>[A]
whereA
is thisenum
.K
inA
asRecord<A, B>[K]
- then reduce the overall array.Partial<...>
of the original.getUnionType
with a pair of types (two types), create a cache key more quickly.The text was updated successfully, but these errors were encountered: