questions/02793-medium-mutable/README.md
Implement the generic Mutable<T> which makes all properties in T mutable (not readonly).
For example
interface Todo {
readonly title: string
readonly description: string
readonly completed: boolean
}
type MutableTodo = Mutable<Todo> // { title: string; description: string; completed: boolean; }
<a href="../../README.md" target="_blank"></a> <a href="https://tsch.js.org/2793/answer" target="_blank"></a> <a href="https://tsch.js.org/2793/solutions" target="_blank"></a> <!--info-footer-end-->