export abstract class SaveComponent { unsaved: boolean = false; static JSON_INDENT = 4; onModifyContent() { this.unsaved = true; } onSaveContent() { this.unsaved = false; } }