class ContentMarker { public name : string; private readonly important : boolean = false; constructor (name : string, important? : boolean) { this.name = name; this.important = important == true; } public isImportant () { return this.important; } }