From d38d552c5ce8a2c89d24c5124ec3c227a9d0f6df Mon Sep 17 00:00:00 2001 From: iapyang Date: Mon, 29 Jul 2019 16:11:02 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=AE=9A=E4=B9=89=E9=94=99=E8=AF=AF?= 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 26389d331..81ed09060 100644 --- a/typescript/core/base.ts +++ b/typescript/core/base.ts @@ -95,7 +95,7 @@ export interface _base { backFind: (obj: any, predicate: Function, context?: any) => any; - remove: (obj: any, predicate: Function, context?: any) => void; + remove: (obj: any, predicate: any, context?: any) => void; removeAt: (obj: any, index: number|number[]) => void;