Type Alias: DeepPartial<T>
DeepPartial<
T> =Textendsobject?{ [P in keyof T]?: DeepPartial<T[P]> }:T
Defined in: createTheme.ts:14
Recursive partial type. Every nested property becomes optional, enabling selective overrides at any depth.
Type Parameters
T
T