Tracking de l'application VApp (IHM du jeu)
This commit is contained in:
12
VApp/node_modules/rxjs/dist/esm/internal/Scheduler.js
generated
vendored
Normal file
12
VApp/node_modules/rxjs/dist/esm/internal/Scheduler.js
generated
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
import { dateTimestampProvider } from './scheduler/dateTimestampProvider';
|
||||
export class Scheduler {
|
||||
constructor(schedulerActionCtor, now = Scheduler.now) {
|
||||
this.schedulerActionCtor = schedulerActionCtor;
|
||||
this.now = now;
|
||||
}
|
||||
schedule(work, delay = 0, state) {
|
||||
return new this.schedulerActionCtor(this, work).schedule(state, delay);
|
||||
}
|
||||
}
|
||||
Scheduler.now = dateTimestampProvider.now;
|
||||
//# sourceMappingURL=Scheduler.js.map
|
Reference in New Issue
Block a user