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 23b7970 commit 26709abCopy full SHA for 26709ab
docs/playground/ko/TypeScript/Meta-Types/Mapped Types.ts
@@ -31,7 +31,7 @@ type MyPartialType<Type> = {
31
[Property in keyof Type]?: Type[Property];
32
};
33
34
-// 이제 edit 인터페이스를 만드는 대신에
+// 이제 수정하는 인터페이스를 추가로 만드는 대신에
35
// 매핑된 타입을 사용할 수 있습니다:
36
type MappedArtistForEdit = MyPartialType<Artist>;
37
0 commit comments