From 1e20dc1407129d5b46eaa98078398c7a2c54ed25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Danilo=20B=C3=BCrger?= Date: Fri, 10 Aug 2018 16:57:28 +0200 Subject: [PATCH] [i18n-js] Added toTime --- types/i18n-js/index.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/types/i18n-js/index.d.ts b/types/i18n-js/index.d.ts index 4800125087..70a197772d 100644 --- a/types/i18n-js/index.d.ts +++ b/types/i18n-js/index.d.ts @@ -70,6 +70,8 @@ declare namespace I18n { } function toCurrency(num: number, options?: ToCurrencyOptions): string; + function toTime(scope: Scope, value: string | number | Date): string; + interface ToHumanSizeOptions extends ToNumberOptions { format?: string; }