/** Redefine a Readonly type as mutable */ export type Mutable = { -readonly [Key in keyof Type]: Type[Key]; };