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
A readonly array is not assignable to a writable array. You should add readonly in the condition type.
- type Head<T extends Arr> = T extends [infer H, ...infer _] ? H : never+ type Head<T extends Arr> = T extends readonly [infer H, ...infer _] ? H : never
Bug Report
infer
keyword works on its owninfer
when it's used as return type🔎 Search Terms
generic return type infer const parameter
🕗 Version & Regression Information
⏯ Playground Link
Playground Link
💻 Code
🙁 Actual behavior
type of h is
never
🙂 Expected behavior
type of h should be
1
The text was updated successfully, but these errors were encountered: