questions/00005-extreme-readonly-keys/README.md
Implement a generic GetReadonlyKeys<T> that returns a union of the readonly keys of an Object.
For example
interface Todo {
readonly title: string
readonly description: string
completed: boolean
}
type Keys = GetReadonlyKeys<Todo> // expected to be "title" | "description"
<a href="../../README.md" target="_blank"></a> <a href="https://tsch.js.org/5/answer" target="_blank"></a> <a href="https://tsch.js.org/5/solutions" target="_blank"></a> <!--info-footer-end-->