From a70d15ac1e8ea71072d724d7b2be458835269265 Mon Sep 17 00:00:00 2001 From: iapyang Date: Tue, 24 Mar 2020 18:22:34 +0800 Subject: [PATCH] chore: update --- 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 b7c3ed83e..5902544bd 100644 --- a/typescript/core/base.ts +++ b/typescript/core/base.ts @@ -255,7 +255,7 @@ export interface _base { isNotEmptyArray: (arr: T[] | U) => arr is [T, ...T[]]; - isEmptyObject: (obj: any) => obj is object; + isEmptyObject: (obj: any) => boolean; isNotEmptyObject: (obj: any) => obj is object;