1class Foo { 2 bar: number; 3 4 constructor() { 5 this.bar = 1; 6 } 7 8 baz() { 9 return this.bar; 10 } 11} 12 13