category |
---|
Object Operation |
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 } // [!code highlight]
type MutableProps = Mutable<Props>