"use strict"; var Step = (function () { function Step(index) { this.content = ""; this.selectedConverter = undefined; this.error = false; this.message = ""; this.index = index; } return Step; }()); exports.Step = Step;