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 d07254a commit 2484fb7Copy full SHA for 2484fb7
docs/playground/ko/TypeScript/Meta-Types/Mapped Types.ts
@@ -36,7 +36,7 @@ type MyPartialType<Type> = {
36
type MappedArtistForEdit = MyPartialType<Artist>;
37
38
// 완벽해 보이지만,
39
-// id가 절대 발생하면 안되는 null이 될 수 있게 해줍니다.
+// id 값이 null 이 되는 상황을 방지할 수 없습니다.
40
// 그래서 교집합 타입을 사용하여 빠르게 하나를 개선해 봅시다.
41
// (예시를 살펴보세요:union-and-intersection-types)
42
0 commit comments