mirror of
https://github.com/zhigang1992/react.git
synced 2026-01-26 17:08:51 +08:00
5 lines
113 B
TypeScript
5 lines
113 B
TypeScript
|
|
export type DeepPartial<T> = {
|
|
[P in keyof T]?: T[P] extends Record<string, any> ? DeepPartial<T[P]> : T[P]
|
|
}
|