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 af93ec8 commit abeae6fCopy full SHA for abeae6f
docs/documentation/ko/handbook-v2/Type Manipulation/Conditional Types.md
@@ -155,7 +155,7 @@ type DogMessageContents = MessageOf<Dog>;
155
156
참값 분기내에서는 TypeScript는 `T`가 `message` 프로퍼티를 가지고 _있을 것을_ 알 수 있습니다.
157
158
-또 다른 예제에서 배열 타입이면 요소 타입으로 평평하게 맞추지만, 배열 타입이 아니면 그대로 유지하는 `Flatten` 타입을 만들 수 있습니다.
+또 다른 예제에서 배열 타입이면 배열의 개별 요소 타입으로 평탄화 시키지만, 배열 타입이 아니면 그대로 유지하는 `Flatten` 타입을 만들 수 있습니다.
159
160
```ts twoslash
161
type Flatten<T> = T extends any[] ? T[number] : T;
0 commit comments