From c7a3f73064dbb63b4d365b2ad4c792f075f4d8d8 Mon Sep 17 00:00:00 2001 From: Lukasz Szymanski Date: Mon, 28 Feb 2022 13:51:16 +0100 Subject: [PATCH] fix: update updateLocal plugin typescript types (#1692) Co-authored-by: Lukasz Szymanski --- types/plugin/updateLocale.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/plugin/updateLocale.d.ts b/types/plugin/updateLocale.d.ts index 44bce470d..ef1c01df9 100644 --- a/types/plugin/updateLocale.d.ts +++ b/types/plugin/updateLocale.d.ts @@ -4,5 +4,5 @@ declare const plugin: PluginFunc export = plugin declare module 'dayjs' { - export function updateLocale(localeName: String, customConfig: Object): any + export function updateLocale(localeName: string, customConfig: Record): Record }