Type alias IsDeepMutable<T>

IsDeepMutable<T>: T extends DeepMutable<T>
    ? true
    : false

Checks if all the nested properties of a given object T are actually mutable.

Type Parameters

  • T