We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abeae6f commit 3423817Copy full SHA for 3423817
docs/documentation/ko/handbook-v2/Type Manipulation/Conditional Types.md
@@ -118,7 +118,7 @@ let c = createLabel(Math.random() ? "hello" : 42);
118
type MessageOf<T> = T["message"];
119
```
120
121
-위 에제에서, `T`가 `message` 프로퍼티를 가지고 있는지 알 수 없기 때문에 TypeScript에서 오류가 발생합니다.
+위 예제에서, `T`가 `message` 프로퍼티를 가지고 있는지 알 수 없기 때문에 TypeScript에서 오류가 발생합니다.
122
`T`의 타입을 제한해서 TypeScript가 더이상 오류를 내지 않도록 만들 수 있습니다.
123
124
```ts twoslash
0 commit comments