Type alias Mutable<T>

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

Type helper marking the supplied type as Mutable (opposed to readonly).

Type Parameters

  • T extends object

    The readonly type to make Mutable.

Generated using TypeDoc