Type Alias Writable<T>

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

Convert a readonly array/object to writeable

Type Parameters

  • T