converter/src/app/step.js

13 lines
271 B
JavaScript

"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;