UNPKG

vscroll

Version:
19 lines 617 B
import { __extends } from "tslib"; import { BaseProcessFactory, CommonProcess, ProcessStatus } from './misc/index'; var Start = /** @class */ (function (_super) { __extends(Start, _super); function Start() { return _super !== null && _super.apply(this, arguments) || this; } Start.run = function (scroller) { var payload = scroller.state.startInnerLoop(); scroller.workflow.call({ process: Start.process, status: ProcessStatus.next, payload: payload }); }; return Start; }(BaseProcessFactory(CommonProcess.start))); export default Start; //# sourceMappingURL=start.js.map