From 7be2af7127acba2e1228b7994ecd8eb40e5c376b Mon Sep 17 00:00:00 2001 From: Benjamin Canac Date: Wed, 25 Oct 2023 11:43:36 +0200 Subject: [PATCH] fix(types): handle sub-objects in `app.config.ts` (button colors) Fixes #858 --- src/runtime/types/utils.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/types/utils.d.ts b/src/runtime/types/utils.d.ts index 7d899325d5..91a64270d6 100644 --- a/src/runtime/types/utils.d.ts +++ b/src/runtime/types/utils.d.ts @@ -7,5 +7,5 @@ export type NestedKeyOf = { }[keyof ObjectType]; export type DeepPartial = Partial<{ - [P in keyof T]: DeepPartial | { [key: string]: string }; + [P in keyof T]: DeepPartial | { [key: string]: string | object }; }>;