Readonly
提出詳細
type MyReadonly<T> = { readonly [K in keyof T]: T[K] }
提出日時 | 2023-12-17 12:43:16 |
---|---|
問題 | Readonly |
ユーザー | t-hashimoto-sun |
ステータス | 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 } }