Closed
Description
Hi, maybe this is a bug but is not showing any intellisense regarding with the current object.
TypeScript Version: 1.8.0
Code
interface Person {
name : string;
lastName : string;
age: number;
greet() : string;
}
var People : Person[] = [{
name : "Santi",
lastName : "Aguilar",
age : 21,
greet : function(){
return this.name;
}
}]
Expected behavior:
Offer intellisense for the current object (this)
Actual behavior: