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
|
//// [stringLiteralTypesInImplementationSignatures2.ts]
// String literal types are only valid in overload signatures
function foo(x: any);
function foo(x: 'hi') { }
class C {
foo(x: string);
foo(x: 'hi') { }
}
interface I {
(x: 'a');
(x: 'hi');
foo(x: 'a', y: 'a');
foo(x: 'hi', y: 'hi');
}
var a: {
(x: 'hi');
(x: 'a');
foo(x: 'hi');
foo(x: 'a');
}
var b = {
foo(x: 'hi') { },
foo(x: 'a') { },
}
//// [stringLiteralTypesInImplementationSignatures2.js]
// String literal types are only valid in overload signatures
function foo(x) { }
var C = /** @class */ (function () {
function C() {
}
C.prototype.foo = function (x) { };
return C;
}());
var a;
var b = {
foo: function (x) { },
foo: function (x) { }
};
|