Skip to content

Commit

Permalink
Merge f2476f5 into 8d34ab7
Browse files Browse the repository at this point in the history
  • Loading branch information
bwalding committed Dec 20, 2021
2 parents 8d34ab7 + f2476f5 commit 2172e56
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
"forcover": "npm run cover && nyc report --reporter=text-lcov | coveralls",
"export-schema": "node ./scripts/construct.js",
"export-migration": "node ./scripts/migrate.js",
"export-rollback": "node ./scripts/rollback.js"
"export-rollback": "node ./scripts/rollback.js",
"tsc": "tsc --noEmit types.d.ts"
},
"mocha": {
"timeout": 10000,
Expand Down
2 changes: 1 addition & 1 deletion types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ declare class PgBoss {

subscribe(event: string, name: string): Promise<void>;
unsubscribe(event: string, name: string): Promise<void>;
publish(request: Resolute.Request): Promise<string[]>;
publish(request: PgBoss.Request): Promise<string[]>;

offComplete(name: string): Promise<void>;
offComplete(options: PgBoss.OffWorkOptions): Promise<void>;
Expand Down

0 comments on commit 2172e56

Please sign in to comment.