promise-logic 2.8.2 → 2.8.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/types/index.d.ts
CHANGED
|
@@ -22,7 +22,7 @@ declare class PromiseLogic {
|
|
|
22
22
|
static and<T>(iterable: Iterable<T | PromiseLike<T>>): PromiseWithTimer<T[]>;
|
|
23
23
|
static or<T>(iterable: Iterable<T | PromiseLike<T>>): PromiseWithTimer<T>;
|
|
24
24
|
static race<T>(iterable: Iterable<T | PromiseLike<T>>): PromiseWithTimer<T>;
|
|
25
|
-
static not<T>(iterable: Iterable<T | PromiseLike<T>>): PromiseWithTimer<T
|
|
25
|
+
static not<T>(iterable: Iterable<T | PromiseLike<T>>): PromiseWithTimer<T>;
|
|
26
26
|
static allSettled<T>(iterable: Iterable<T | PromiseLike<T>>): PromiseWithTimer<PromiseSettledResult<T>[]>;
|
|
27
27
|
|
|
28
28
|
static xor<T>(iterable: Iterable<T | PromiseLike<T>>): PromiseWithTimer<T>;
|
package/dist/v2/types/index.d.ts
CHANGED
|
@@ -63,7 +63,7 @@ declare class PromiseLogic {
|
|
|
63
63
|
|
|
64
64
|
// 扩展逻辑门
|
|
65
65
|
static xor<T>(iterable: Iterable<T | PromiseLike<T>>): PromiseWithTimer<T>;
|
|
66
|
-
static not<T>(iterable: Iterable<T | PromiseLike<T>>): PromiseWithTimer<T
|
|
66
|
+
static not<T>(iterable: Iterable<T | PromiseLike<T>>): PromiseWithTimer<T>;
|
|
67
67
|
static nand<T>(iterable: Iterable<T | PromiseLike<T>>): PromiseWithTimer<T[]>;
|
|
68
68
|
static nor<T>(iterable: Iterable<T | PromiseLike<T>>): PromiseWithTimer<T[]>;
|
|
69
69
|
static xnor<T>(iterable: Iterable<T | PromiseLike<T>>): PromiseWithTimer<T[]>;
|
package/package.json
CHANGED