@zwa73/utils 1.0.183 → 1.0.184
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/UtilFunctions.d.ts +1 -1
- package/package.json +1 -1
- package/src/UtilFunctions.ts +1 -1
package/dist/UtilFunctions.d.ts
CHANGED
|
@@ -36,7 +36,7 @@ type TimeoutOut<T> = Outcome<Timeout, Promise<T>>;
|
|
|
36
36
|
export type RepeatPromiseResult<T> = {
|
|
37
37
|
completed: T;
|
|
38
38
|
/**还未完成的其他Promise 若是验证失败则会返回undefined */
|
|
39
|
-
pending
|
|
39
|
+
pending: Promise<T | undefined>[];
|
|
40
40
|
};
|
|
41
41
|
/**遍历对象的回调函数
|
|
42
42
|
* @param key - 字段名
|
package/package.json
CHANGED