Skip to content

Commit

Permalink
Merge df4d892 into acb667b
Browse files Browse the repository at this point in the history
  • Loading branch information
bajtos committed Jun 13, 2019
2 parents acb667b + df4d892 commit 869b726
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions types/common.d.ts
Expand Up @@ -23,6 +23,6 @@ export type Callback<T = any> = (err?: any | null, result?: T) => void;
/**
* Return export type for promisified Node.js async methods.
*
* Note that juggler uses Bluebird, not the native Promise.
* Note that starting with version 4.0, juggler uses native Promises.
*/
export type PromiseOrVoid<T = any> = PromiseLike<T> | void;
export type PromiseOrVoid<T = any> = Promise<T> | void;

0 comments on commit 869b726

Please sign in to comment.