antongolub/push-it-to-the-limit

View on GitHub
src/main/ts/index.ts

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
export * from './interface'
export * from './common'

export {DEFAULT_DELAY, REJECTED, REJECTED_ON_CANCEL} from './common'
export {Limiter} from './limiter'
export {debounce} from './wrappers/debounce'
export {delay} from './wrappers/delay'
export {ratelimit} from './wrappers/ratelimit'
export {repeat} from './wrappers/repeat'
export {stabilize} from './wrappers/stabilize'
export {throttle} from './wrappers/throttle'