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