fix(types): handle sub-objects in app.config.ts (button colors)

Fixes #858
This commit is contained in:
Benjamin Canac
2023-10-25 11:43:36 +02:00
parent 2b7c5c575f
commit 7be2af7127

View File

@@ -7,5 +7,5 @@ export type NestedKeyOf<ObjectType extends object> = {
}[keyof ObjectType];
export type DeepPartial<T> = Partial<{
[P in keyof T]: DeepPartial<T[P]> | { [key: string]: string };
[P in keyof T]: DeepPartial<T[P]> | { [key: string]: string | object };
}>;