UNPKG

ember-concurrency

Version:

Improved concurrency/async primitives for Ember.js

14 lines 435 B
export default KeepLatestPolicy; declare class KeepLatestPolicy extends BoundedPolicy { makeReducer(numRunning: any, numQueued: any): KeepLatestReducer; } import BoundedPolicy from './bounded-policy'; declare class KeepLatestReducer { constructor(remainingSlots: any, numToCancel: any); remainingSlots: any; numToCancel: any; step(): { type: string; }; } //# sourceMappingURL=keep-latest-policy.d.ts.map