Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Action.js 561B

123456789101112131415161718
  1. /** PURE_IMPORTS_START tslib,_Subscription PURE_IMPORTS_END */
  2. import * as tslib_1 from "tslib";
  3. import { Subscription } from '../Subscription';
  4. var 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));
  17. export { Action };
  18. //# sourceMappingURL=Action.js.map