Commit d7ad4ed9 authored by nanahira's avatar nanahira

fix PartialDeep

parent a0356fdc
......@@ -10,6 +10,8 @@ export type PartialDeep<T> = T extends
| undefined
| symbol
| Date
// eslint-disable-next-line @typescript-eslint/ban-types
| Function
? T | undefined
: // Arrays, Sets and Maps and their readonly counterparts have their items made
// deeply partial, but their own instances are left untouched
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment