I started with an ES6 Class
class Foo { id: string; bar: string; constructor(id: string) { this.id = id; this.bar = \'initial value\'; } c