```
interface Todo {
title: string
description: string
}
const todo: MyReadonly = {
title: "Hey",
description: "foobar"
}
todo.title = "Hello" // Error: cannot reassign a readonly property
todo.description = "barFoo" // Error: cannot reassign a readonly property
- result
```js
type MyReadonly<T> = {
readonly [S in keyof T] : T[S]
}
// readonly 로 읽기 전용으로 만들고 T 인터페이스에서 받아논 S는 인터페이스의 키중의 하나 : 인터페이스의 키