From f6bfae0062ab2b55158a2c7659c70b403622ccc5 Mon Sep 17 00:00:00 2001 From: Johannes Edmeier Date: Thu, 4 Jul 2019 09:53:27 +0200 Subject: [PATCH] fix: Type - Export Ls object to query all available locales (#623) --- types/index.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/types/index.d.ts b/types/index.d.ts index 55b3f3304..ff664da55 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -103,4 +103,6 @@ declare namespace dayjs { export function isDayjs(d: any): d is Dayjs export function unix(t: number): Dayjs + + const Ls : { [key: string] : { [key: string]: any } } }