size.js 393 B

1234567891011121314
  1. import { __extends } from "tslib";
  2. import Attribute from './base';
  3. var Size = /** @class */ (function (_super) {
  4. __extends(Size, _super);
  5. function Size(cfg) {
  6. var _this = _super.call(this, cfg) || this;
  7. _this.type = 'size';
  8. _this.names = ['size'];
  9. return _this;
  10. }
  11. return Size;
  12. }(Attribute));
  13. export default Size;
  14. //# sourceMappingURL=size.js.map