diff --git a/types/common.d.ts b/types/common.d.ts index 912076c9..f45691a3 100644 --- a/types/common.d.ts +++ b/types/common.d.ts @@ -23,6 +23,6 @@ export type Callback = (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 = PromiseLike | void; +export type PromiseOrVoid = Promise | void;