File tree Expand file tree Collapse file tree 3 files changed +19
-0
lines changed
Expand file tree Collapse file tree 3 files changed +19
-0
lines changed Original file line number Diff line number Diff line change 11export { Job } from './src/job.js'
22export { Worker } from './src/worker.js'
33export { QueueManager } from './src/queue_manager.js'
4+ export { Locator } from './src/locator.js'
45export {
56 customBackoff ,
67 linearBackoff ,
78 exponentialBackoff ,
89 fixedBackoff ,
910} from './src/strategies/backoff_strategy.js'
11+ export * as errors from './src/exceptions.js'
Original file line number Diff line number Diff line change 1111 "." : " ./build/index.js" ,
1212 "./drivers/*" : " ./build/src/drivers/*.js" ,
1313 "./contracts/*" : " ./build/src/contracts/*.js" ,
14+ "./types" : " ./build/src/types/index.js" ,
1415 "./types/*" : " ./build/src/types/*.js"
1516 },
1617 "scripts" : {
Original file line number Diff line number Diff line change 1+ export type {
2+ Duration ,
3+ JobData ,
4+ JobOptions ,
5+ JobClass ,
6+ RetryConfig ,
7+ BackoffStrategy ,
8+ BackoffConfig ,
9+ QueueConfig ,
10+ WorkerConfig ,
11+ WorkerCycle ,
12+ AdapterFactory ,
13+ QueueManagerConfig ,
14+ } from './main.js'
15+
16+ export type { Adapter , AcquiredJob } from '../contracts/adapter.js'
You can’t perform that action at this time.
0 commit comments