1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
//// [memberFunctionsWithPublicOverloads.ts]
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) { }
}
//// [memberFunctionsWithPublicOverloads.js]
var C = /** @class */ (function () {
function C() {
}
C.prototype.foo = function (x, y) { };
C.prototype.bar = function (x, y) { };
C.foo = function (x, y) { };
C.bar = function (x, y) { };
return C;
}());
var D = /** @class */ (function () {
function D() {
}
D.prototype.foo = function (x, y) { };
D.prototype.bar = function (x, y) { };
D.foo = function (x, y) { };
D.bar = function (x, y) { };
return D;
}());
|