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
|
//// [implicitAnyDeclareTypePropertyWithoutType.ts]
class C {
constructor() { }
}
// this should be an error
var x: { y; z; } // error at "y,z"
var x1: { y1: C; z1; }; // error at "z1"
var x11: { new (); }; // error at "new"
var x2: (y2) => number; // error at "y2"
var x3: (x3: string, y3) => void ; // error at "y3"
// this should not be an error
var bar: { a: number; b: number };
var foo: { littleC: C; c: string };
var x4: new () => any;
var x5: () => any;
//// [implicitAnyDeclareTypePropertyWithoutType.js]
var C = /** @class */ (function () {
function C() {
}
return C;
}());
// this should be an error
var x; // error at "y,z"
var x1; // error at "z1"
var x11; // error at "new"
var x2; // error at "y2"
var x3; // error at "y3"
// this should not be an error
var bar;
var foo;
var x4;
var x5;
|