mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 11:13:43 +03:00
37 lines
911 B
TypeScript
37 lines
911 B
TypeScript
declare function all(a?: number, b?: number): void;
|
|
declare function weird(a?: number | string, b?: number | string): void;
|
|
declare function prefix(s: string, a?: number, b?: number): void;
|
|
declare function rest(s: string, a?: number, b?: number, ...rest: number[]): void;
|
|
declare function normal(s: string): void;
|
|
declare function thunk(): string;
|
|
declare function prefix2(s: string, n: number, a?: number, b?: number): void;
|
|
|
|
declare var ns: number[];
|
|
declare var mixed: (number | string)[];
|
|
declare var tuple: [number, string];
|
|
|
|
// good
|
|
all(...ns)
|
|
weird(...ns)
|
|
weird(...mixed)
|
|
weird(...tuple)
|
|
prefix("a", ...ns)
|
|
rest("d", ...ns)
|
|
|
|
|
|
// extra arguments
|
|
normal("g", ...ns)
|
|
thunk(...ns)
|
|
|
|
// bad
|
|
all(...mixed)
|
|
all(...tuple)
|
|
prefix("b", ...mixed)
|
|
prefix("c", ...tuple)
|
|
rest("e", ...mixed)
|
|
rest("f", ...tuple)
|
|
prefix(...ns) // required parameters are required
|
|
prefix(...mixed)
|
|
prefix(...tuple)
|
|
prefix2("g", ...ns);
|