Readonly
提出詳細
type MyReadonly<T> = { readonly [key in keyof T]: T[key] }
提出日時 | 2024-08-26 09:05:00 |
---|---|
問題 | Readonly |
ユーザー | Katsukiniwa |
ステータス | Accepted |
import type { Equal, Expect } from '@type-challenges/utils' type cases = [ Expect<Equal<MyReadonly<Todo1>, Readonly<Todo1>>>, ] interface Todo1 { title: string description: string completed: boolean meta: { author: string } }