Casts a readonly type T to its DeepMutable<T> equivalent, recursively
removing all readonly modifiers.
⚠️ Safety Warning: This recursively bypasses ALL immutability guarantees
in nested structures. Extremely dangerous for complex data structures as it
allows mutation at any depth. The runtime value is unchanged - only
TypeScript's type checking is affected.
Casts a readonly type
T
to itsDeepMutable<T>
equivalent, recursively removing all readonly modifiers.⚠️ Safety Warning: This recursively bypasses ALL immutability guarantees in nested structures. Extremely dangerous for complex data structures as it allows mutation at any depth. The runtime value is unchanged - only TypeScript's type checking is affected.