From 23b60dc1975db38c280d8a123aff97544d1673e0 Mon Sep 17 00:00:00 2001
From: HelenHuang <LinHuang@pollex.com.tw>
Date: 星期四, 09 六月 2022 15:34:21 +0800
Subject: [PATCH] TODO#139890 FAQ 常見問題 1-文案調整

---
 PAMapp/node_modules/@types/lodash/common/util.d.ts |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/PAMapp/node_modules/@types/lodash/common/util.d.ts b/PAMapp/node_modules/@types/lodash/common/util.d.ts
index 406c6de..caf2467 100755
--- a/PAMapp/node_modules/@types/lodash/common/util.d.ts
+++ b/PAMapp/node_modules/@types/lodash/common/util.d.ts
@@ -79,7 +79,8 @@
          * func({ 'a': '1', 'b': '2' });
          * // => 'no match'
          */
-        cond<T, R>(pairs: Array<CondPair<T, R>>): (Target: T) => R;
+        cond<R>(pairs: Array<CondPairNullary<R>>): () => R;
+        cond<T, R>(pairs: Array<CondPairUnary<T, R>>): (Target: T) => R;
     }
 
     type ConformsPredicateObject<T> = {
@@ -424,7 +425,7 @@
         /**
          * @see _.iteratee
          */
-        iteratee(func: string | object): (...args: any[]) => any;
+        iteratee(func: symbol | number | string | object): (...args: any[]) => any;
     }
     interface Function<T extends (...args: any) => any> {
         /**

--
Gitblit v1.8.0