| 1234567891011121314151617181920212223 |
- 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;
|