Type Alias NonReadonly<A>

NonReadonly<A>: {
    -readonly [K in keyof A]: A[K]
}

Represents a type that removes the readonly modifier from all properties of a given object.

Type Parameters