From d7a86ee4043d3cc3609155a6a8671192a78a75c0 Mon Sep 17 00:00:00 2001 From: iapyang Date: Mon, 5 Jul 2021 19:15: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/func/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/typescript/core/func/index.ts b/typescript/core/func/index.ts index 381deb4d9..7aca32af5 100644 --- a/typescript/core/func/index.ts +++ b/typescript/core/func/index.ts @@ -4,6 +4,7 @@ import { _number } from "./number"; import { _function } from "./function"; import { _Date, _date } from "./date"; -export interface _func extends _array, _string, _number, _function, _date { +export interface _func extends _array, _string, _number, _date { Date: _Date; + Func: _function; }