1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- import { __extends } from "tslib";
- import DataZoomView from './DataZoomView.js';
- var SelectDataZoomView = function (_super) {
- __extends(SelectDataZoomView, _super);
- function SelectDataZoomView() {
- var _this = _super !== null && _super.apply(this, arguments) || this;
- _this.type = SelectDataZoomView.type;
- return _this;
- }
- SelectDataZoomView.type = 'dataZoom.select';
- return SelectDataZoomView;
- }(DataZoomView);
- export default SelectDataZoomView;
|