mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 10:12:42 +03:00
40 lines
1020 B
TypeScript
40 lines
1020 B
TypeScript
class C {
|
|
public foo(x: number);
|
|
public foo(x: number, y: string);
|
|
public foo(x: any, y?: any) { }
|
|
|
|
public bar(x: 'hi');
|
|
public bar(x: string);
|
|
public bar(x: number, y: string);
|
|
public bar(x: any, y?: any) { }
|
|
|
|
public static foo(x: number);
|
|
public static foo(x: number, y: string);
|
|
public static foo(x: any, y?: any) { }
|
|
|
|
public static bar(x: 'hi');
|
|
public static bar(x: string);
|
|
public static bar(x: number, y: string);
|
|
public static bar(x: any, y?: any) { }
|
|
}
|
|
|
|
class D<T> {
|
|
public foo(x: number);
|
|
public foo(x: T, y: T);
|
|
public foo(x: any, y?: any) { }
|
|
|
|
public bar(x: 'hi');
|
|
public bar(x: string);
|
|
public bar(x: T, y: T);
|
|
public bar(x: any, y?: any) { }
|
|
|
|
public static foo(x: number);
|
|
public static foo(x: number, y: string);
|
|
public static foo(x: any, y?: any) { }
|
|
|
|
public static bar(x: 'hi');
|
|
public static bar(x: string);
|
|
public static bar(x: number, y: string);
|
|
public static bar(x: any, y?: any) { }
|
|
|
|
} |