123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- import { __extends } from "tslib";
- import ComponentView from '../../view/Component.js';
- var TimelineView =
- function (_super) {
- __extends(TimelineView, _super);
- function TimelineView() {
- var _this = _super !== null && _super.apply(this, arguments) || this;
- _this.type = TimelineView.type;
- return _this;
- }
- TimelineView.type = 'timeline';
- return TimelineView;
- }(ComponentView);
- export default TimelineView;
|