@reactivex/rxjs
Version:
Reactive Extensions for modern JavaScript
8 lines • 335 B
JavaScript
import { QueueScheduler } from './QueueScheduler';
import { AnimationFrameAction } from './AnimationFrameAction';
export class AnimationFrameScheduler extends QueueScheduler {
scheduleNow(work, state) {
return new AnimationFrameAction(this, work).schedule(state);
}
}
//# sourceMappingURL=AnimationFrameScheduler.js.map