hugoWebsite/node_modules/rxjs/dist/esm/internal/scheduler/Action.js

10 lines
245 B
JavaScript
Raw Normal View History

2022-10-29 00:20:35 +02:00
import { Subscription } from '../Subscription';
export class Action extends Subscription {
constructor(scheduler, work) {
super();
}
schedule(state, delay = 0) {
return this;
}
}
//# sourceMappingURL=Action.js.map