Type alias DeepWriteable<T>

DeepWriteable<T>: {
    -readonly [P in keyof T]: DeepWriteable<T[P]>
}

Make type deeply writable

Type Parameters

  • T