From a02f77adb9d2d5316df4052b4b9fb067cfdea0cc Mon Sep 17 00:00:00 2001 From: iapyang Date: Thu, 18 Jul 2019 16:44:07 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20i18n=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/i18n.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typescript/core/i18n.ts b/typescript/core/i18n.ts index d73689783..2e4960158 100644 --- a/typescript/core/i18n.ts +++ b/typescript/core/i18n.ts @@ -1,6 +1,6 @@ export declare type _addI18n = (v: string) => string; -export declare type _i18nText = (key: string) => string; +export declare type _i18nText = (key: string, ..._args: any[]) => string; export declare type _i18n = { addI18n: _addI18n;