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
function g1(b?: string, ...a: string[]) { }
function g2(a?: string, b?: string) { }
var s: typeof g1 | typeof g2;
s("a", "b", "c") // should be an error: 0..2 parameters are allowed