Type Alias Mutable<T>

Mutable<T>: {
    -readonly [K in keyof T]: T[K]
}

Converts a readonly type to a mutable type.

Type Parameters

  • T

    The readonly type to convert.