19 lines
301 B
JavaScript
19 lines
301 B
JavaScript
var Test =
|
|
/*#__PURE__*/
|
|
function () {
|
|
function Test() {
|
|
babelHelpers.classCallCheck(this, Test);
|
|
}
|
|
|
|
babelHelpers.createClass(Test, [{
|
|
key: "test",
|
|
get: function get() {
|
|
return 5 + 5;
|
|
},
|
|
set: function set(val) {
|
|
this._test = val;
|
|
}
|
|
}]);
|
|
return Test;
|
|
}();
|