Type Alias Writable<T>Internal

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

Remove readonly modifier from all properties of T.

Type Parameters

  • T

    Type to remove readonly modifier.