1
0
Fork 0
freesewing/dist/lib/option.js

13 lines
317 B
JavaScript
Raw Normal View History

2018-07-10 19:29:09 +02:00
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var Option = /** @class */ (function () {
function Option(config) {
this.id = config.id;
this.config = config;
this.val = config.val;
return this;
}
return Option;
}());
exports.default = Option;