questions/05181-hard-mutable-keys/README.md
Implement the advanced util type MutableKeys<T>, which picks all the mutable (not readonly) keys into a union.
For example:
type Keys = MutableKeys<{ readonly foo: string; bar: number }>;
// expected to be “bar”
<a href="../../README.md" target="_blank"></a> <a href="https://tsch.js.org/5181/answer" target="_blank"></a> <a href="https://tsch.js.org/5181/solutions" target="_blank"></a> <hr><h3>Related Challenges</h3><a href="https://github.com/type-challenges/type-challenges/blob/main/questions/02793-medium-mutable/README.md" target="_blank"></a> <!--info-footer-end-->