Type alias Writable<T>

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

Make all properties in T non-readonly.

Type Parameters

  • T