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
|
//// [objectTypesWithOptionalProperties2.ts]
// Illegal attempts to define optional methods
var a: {
x()?: number; // error
}
interface I {
x()?: number; // error
}
class C {
x()?: number; // error
}
interface I2<T> {
x()?: T; // error
}
class C2<T> {
x()?: T; // error
}
var b = {
x()?: 1 // error
}
//// [objectTypesWithOptionalProperties2.js]
// Illegal attempts to define optional methods
var a;
var C = /** @class */ (function () {
function C() {
}
C.prototype.x = function () { };
return C;
}());
var C2 = /** @class */ (function () {
function C2() {
}
C2.prototype.x = function () { };
return C2;
}());
var b = {
x: function () { }, 1: // error
};
|