Type Alias DeepImmutableObject<T>

DeepImmutableObject<T>: {
    readonly [K in keyof T]: DeepImmutable<T[K]>
}

Type modifier to make object properties readonly.

Type Parameters

  • T