Action.js 456 B

123456789101112131415
  1. import { __extends } from "tslib";
  2. import { Subscription } from '../Subscription';
  3. var Action = (function (_super) {
  4. __extends(Action, _super);
  5. function Action(scheduler, work) {
  6. return _super.call(this) || this;
  7. }
  8. Action.prototype.schedule = function (state, delay) {
  9. if (delay === void 0) { delay = 0; }
  10. return this;
  11. };
  12. return Action;
  13. }(Subscription));
  14. export { Action };
  15. //# sourceMappingURL=Action.js.map