13 lines
313 B
JavaScript
13 lines
313 B
JavaScript
![]() |
"use strict";
|
||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
var Model = /** @class */ (function () {
|
||
|
function Model(config) {
|
||
|
this.id = config.id;
|
||
|
this.config = config;
|
||
|
this.val = config.val;
|
||
|
return this;
|
||
|
}
|
||
|
return Model;
|
||
|
}());
|
||
|
exports.default = Model;
|