cione-comp-lib
Version:
`$ yarn add cione-comp-lib` 或者 `$ npm i cione-comp-lib -S`
15 lines (14 loc) • 501 B
JavaScript
import { __extends } from "../../../../tslib/tslib.es6.mjs";
import ComponentView from "../../view/Component.mjs";
var TimelineView = function(_super) {
__extends(TimelineView2, _super);
function TimelineView2() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.type = TimelineView2.type;
return _this;
}
TimelineView2.type = "timeline";
return TimelineView2;
}(ComponentView);
var TimelineView$1 = TimelineView;
export { TimelineView$1 as default };