You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
Patch Changes
ecb490b: Head<Type> no longer includes an extraneous | undefined when instantiated with a union of empty and
non-empty tuple, like [] | [1, 2]
859d85c: MarkOptional<Type, Keys> is now assignable to Partial<Type>
dda4def: Tail<Type> now works with readonly arrays and also correctly returns the tail for tuples with all optional
members. Additionally, it now acts as an identity for non-tuple arrays, i.e., it returns Type when Type is a
non-tuple array, such as string[], number[], etc.
d02bf22: Fix MarkRequired<Type, Keys> & MarkWritable<Type, Keys> types when Keys is any
d3b56d7: Prettify the output of Mark-* and Merge types