Skip to content

Commit 3bd90dc

Browse files
committed
fix: export all kind of types
1 parent 4297be3 commit 3bd90dc

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hokify/agenda",
3-
"version": "4.0.1",
3+
"version": "4.0.2",
44
"description": "Light weight job scheduler for Node.js",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

src/index.ts

+8
Original file line numberDiff line numberDiff line change
@@ -375,3 +375,11 @@ export class Agenda extends EventEmitter {
375375

376376
// Agenda.prototype._findAndLockNextJob = find_and_lock_next_job; -> moved to JobProcessor
377377
}
378+
379+
export * from './types/AgendaConfig';
380+
381+
export * from './types/JobDefinition';
382+
383+
export * from './types/JobParameters';
384+
385+
export * from './types/DbOptions';

0 commit comments

Comments
 (0)