diff --git a/package-lock.json b/package-lock.json index e974750..7966dbb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "async-short-circuit", - "version": "1.1.1", + "version": "1.2.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 511d6f2..4c71d0f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "async-short-circuit", - "version": "1.1.1", + "version": "1.2.0", "description": "Short circuit logic for boolean promises", "main": "src/index.js", "types": "src/index.d.ts", diff --git a/src/index.d.ts b/src/index.d.ts index 09955a6..cca6963 100644 --- a/src/index.d.ts +++ b/src/index.d.ts @@ -10,7 +10,7 @@ * * @returns a promise that resolves with the result of ANDing the given promises. */ -export function asyncAnd(promises: Promise[]): Promise; +export function asyncAnd(promises: Promise[]): Promise; /** @@ -25,4 +25,4 @@ export function asyncAnd(promises: Promise[]): Promise; * * @returns a promise that resolves with the result of ORing the given promises. */ -export function asyncOr(promises: Promise[]): Promise; +export function asyncOr(promises: Promise[]): Promise;