From 22d1a3d57aa937c97dff327f52095121fe302465 Mon Sep 17 00:00:00 2001 From: iapyang Date: Mon, 21 Dec 2020 15:04:19 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=20=E4=BF=AE=E6=94=B9=E6=8F=8F?= =?UTF-8?q?=E8=BF=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- typescript/core/base.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typescript/core/base.ts b/typescript/core/base.ts index 63d82913f..e501b63bb 100644 --- a/typescript/core/base.ts +++ b/typescript/core/base.ts @@ -223,7 +223,7 @@ export interface _base { zipObject: (props: any[], values?: any[]) => object; - cloneDeep: (value: any, customizer?: Function, thisArg?: any) => any; + cloneDeep: (value: T) => T; findKey: (object: object, predicate?: Function|object|string, thisArg?: any) => any;