Type Alias NonReadonly<A>

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

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

Type Parameters