questions/00005-extreme-readonly-keys/README.ja.md
オブジェクトの読み取り専用キーの Union を返す汎用的な GetReadonlyKeys<T> を実装してください。
例えば
interface Todo {
readonly title: string
readonly description: string
completed: boolean
}
type Keys = GetReadonlyKeys<Todo> // expected to be "title" | "description"
<a href="../../README.ja.md" target="_blank"></a> <a href="https://tsch.js.org/5/answer/ja" target="_blank"></a> <a href="https://tsch.js.org/5/solutions" target="_blank"></a> <!--info-footer-end-->