Skip to content

Commit 027b021

Browse files
committed
translate: ko _Creating Types from Types.md
1 parent c7609e1 commit 027b021

File tree

1 file changed

+10
-12
lines changed

1 file changed

+10
-12
lines changed

docs/documentation/ko/handbook-v2/Type Manipulation/_Creating Types from Types.md

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,16 @@ permalink: /ko/docs/handbook/2/types-from-types.html
55
oneline: "An overview of the ways in which you can create more types from existing types."
66
---
77

8-
TypeScript's type system is very powerful because it allows expressing types _in terms of other types_.
8+
TypeScript의 타입 시스템은 _다른 타입들의 측면에서_ 타입들을 표현할 수 있기에 매우 강력합니다.
99

10-
The simplest form of this idea is generics. Additionally, we have a wide variety of _type operators_ available to use.
11-
It's also possible to express types in terms of _values_ that we already have.
10+
이 발상의 가장 단순한 형태는 제네릭입니다. 추가로 다양한 종류의 _타입 연산자들_ 을 사용할 수 있습니다. 또한 이미 알고 있는 _값(values)_ 의 관점에서 타입들을 표현 가능합니다.
1211

13-
By combining various type operators, we can express complex operations and values in a succinct, maintainable way.
14-
In this section we'll cover ways to express a new type in terms of an existing type or value.
12+
다양한 타입 연산자들을 결합함으로써 복잡한 연산과 값을 간결하고 유지 관리하기 쉬운 방식으로 표현할 수 있습니다. 이 섹션에서는 기존 타입 또는 값으로 새 타입을 표현하는 방법을 다룹니다.
1513

16-
- [Generics](/docs/handbook/2/generics.html) - Types which take parameters
17-
- [Keyof Type Operator](/docs/handbook/2/keyof-types.html) - Using the `keyof` operator to create new types
18-
- [Typeof Type Operator](/docs/handbook/2/typeof-types.html) - Using the `typeof` operator to create new types
19-
- [Indexed Access Types](/docs/handbook/2/indexed-access-types.html) - Using `Type['a']` syntax to access a subset of a type
20-
- [Conditional Types](/docs/handbook/2/conditional-types.html) - Types which act like if statements in the type system
21-
- [Mapped Types](/docs/handbook/2/mapped-types.html) - Creating types by mapping each property in an existing type
22-
- [Template Literal Types](/docs/handbook/2/template-literal-types.html) - Mapped types which change properties via template literal strings
14+
- [Generics](/docs/handbook/2/generics.html) - 매개변수를 취하는 타입
15+
- [Keyof Type Operator](/docs/handbook/2/keyof-types.html) - 새로운 타입을 생성하기 위해 `keyof` 연산자 사용하기
16+
- [Typeof Type Operator](/docs/handbook/2/typeof-types.html) - 새로운 타입을 생성하기 위해 `typeof` 연산자 사용하기
17+
- [Indexed Access Types](/docs/handbook/2/indexed-access-types.html) - 타입의 부분집합에 접근하기 위해 `Type['a']` 문법 사용하기
18+
- [Conditional Types](/docs/handbook/2/conditional-types.html) - 타입 시스템에서 if문처럼 동작하는 타입
19+
- [Mapped Types](/docs/handbook/2/mapped-types.html) - 이미 존재하는 타입의 각 프로퍼티들을 매핑한 타입 생성하기
20+
- [Template Literal Types](/docs/handbook/2/template-literal-types.html) - 템플릿 리터럴 문자열을 이용해서 매핑된 타입들의 프로퍼티 바꾸기

0 commit comments

Comments
 (0)