Skip to content

Commit

Permalink
fix: export all kind of types
Browse files Browse the repository at this point in the history
  • Loading branch information
simllll committed Oct 11, 2020
1 parent 4297be3 commit 3bd90dc
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hokify/agenda",
"version": "4.0.1",
"version": "4.0.2",
"description": "Light weight job scheduler for Node.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
8 changes: 8 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -375,3 +375,11 @@ export class Agenda extends EventEmitter {

// Agenda.prototype._findAndLockNextJob = find_and_lock_next_job; -> moved to JobProcessor
}

export * from './types/AgendaConfig';

export * from './types/JobDefinition';

export * from './types/JobParameters';

export * from './types/DbOptions';

0 comments on commit 3bd90dc

Please sign in to comment.