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
/** * Obtain the parameters of a constructor function type in a tuple */typeConstructorParameters<Textendsnew(...args: any)=>any>=Textendsnew(...args: infer P)=>any ? P : never;
Expected behavior: ...args rest param should extend any[]