2018-11-22 16:41:46 +01:00
|
|
|
import { Subscription } from '../Subscription';
|
|
|
|
export class Action extends Subscription {
|
|
|
|
constructor(scheduler, work) {
|
|
|
|
super();
|
|
|
|
}
|
|
|
|
schedule(state, delay = 0) {
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
}
|
2019-06-04 14:29:48 +02:00
|
|
|
//# sourceMappingURL=Action.js.map
|