NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/@antv/attr/lib/size.js
2023-09-14 14:47:11 +08:00

23 lines
524 B
Java

function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }
var Base = require('./base');
var Size =
/*#__PURE__*/
function (_Base) {
_inheritsLoose(Size, _Base);
function Size(cfg) {
var _this;
_this = _Base.call(this, cfg) || this;
_this.names = ['size'];
_this.type = 'size';
_this.gradient = null;
return _this;
}
return Size;
}(Base);
module.exports = Size;