source: trip-planner-front/node_modules/rxjs/_esm5/internal/scheduler/Action.js@ 8d391a1

Last change on this file since 8d391a1 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 561 bytes
Line 
1/** PURE_IMPORTS_START tslib,_Subscription PURE_IMPORTS_END */
2import * as tslib_1 from "tslib";
3import { Subscription } from '../Subscription';
4var Action = /*@__PURE__*/ (function (_super) {
5 tslib_1.__extends(Action, _super);
6 function Action(scheduler, work) {
7 return _super.call(this) || this;
8 }
9 Action.prototype.schedule = function (state, delay) {
10 if (delay === void 0) {
11 delay = 0;
12 }
13 return this;
14 };
15 return Action;
16}(Subscription));
17export { Action };
18//# sourceMappingURL=Action.js.map
Note: See TracBrowser for help on using the repository browser.