Appearance
Like Readonly, but it will remove the readonly of the object property.
import type { Mutable } from '@utype/core' type Props = { readonly name: string; } // Expect: { name: string } type MutableProps = Mutable<Props>