🚧 WIP:Work on types and exports
This commit is contained in:
parent
145272c546
commit
c8d502c698
16 changed files with 312 additions and 95 deletions
12
dist/lib/option.js
vendored
Normal file
12
dist/lib/option.js
vendored
Normal file
|
@ -0,0 +1,12 @@
|
|||
"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;
|
Loading…
Add table
Add a link
Reference in a new issue