Skip to content

Commit

Permalink
fix(types): handle sub-objects in app.config.ts (button colors)
Browse files Browse the repository at this point in the history
Fixes #858
  • Loading branch information
benjamincanac committed Oct 25, 2023
1 parent 2b7c5c5 commit 7be2af7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/runtime/types/utils.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 };
}>;

1 comment on commit 7be2af7

@vercel
Copy link

@vercel vercel bot commented on 7be2af7 Oct 25, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

ui – ./

ui-git-dev-nuxt-js.vercel.app
ui-nuxt-js.vercel.app
ui.nuxt.com

Please sign in to comment.