frontend/.pnpm-store/v3/files/bf/55979a72207a8db8a8a8ca0a7fbae1ad7b33b0caca7867737954aa8c5b64c5b821c63025304d50bdbb7a032e2668d228cac0bdd10e302b86c84da6bf30aaa2

15 lines
456 B
Plaintext

import { __extends } from "tslib";
import { Subscription } from '../Subscription';
var Action = (function (_super) {
__extends(Action, _super);
function Action(scheduler, work) {
return _super.call(this) || this;
}
Action.prototype.schedule = function (state, delay) {
if (delay === void 0) { delay = 0; }
return this;
};
return Action;
}(Subscription));
export { Action };
//# sourceMappingURL=Action.js.map