@antv/attr
Version:
The Attribute module for G2, F2.
16 lines • 507 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var base_1 = require("./base");
var Opacity = /** @class */ (function (_super) {
tslib_1.__extends(Opacity, _super);
function Opacity(cfg) {
var _this = _super.call(this, cfg) || this;
_this.type = 'opacity';
_this.names = ['opacity'];
return _this;
}
return Opacity;
}(base_1.default));
exports.default = Opacity;
//# sourceMappingURL=opacity.js.map
;