Contact
- Total activity 2
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 1
-
Created Any ideas why Parameter Info lacks inference and does not match the correct Quick Documentation (works in VSC)?
Below is a simplified code example and a few screenshots to demonstrate my issue. Example #1: type OmitFirst<T extends any[]> = T extends [infer A, ...infer B] ? B : never;type OmitFirstParameter<...