Type Alias Writeable<T>

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

Removes the readonly modifier from all properties of T.

Type Parameters

  • T