@@ -5,18 +5,16 @@ permalink: /ko/docs/handbook/2/types-from-types.html
5
5
oneline : " An overview of the ways in which you can create more types from existing types."
6
6
---
7
7
8
- TypeScript's type system is very powerful because it allows expressing types _ in terms of other types _ .
8
+ TypeScript의 타입 시스템은 _ 다른 타입들의 측면에서 _ 타입들을 표현할 수 있기에 매우 강력합니다 .
9
9
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)_ 의 관점에서 타입들을 표현 가능합니다.
12
11
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
+ 다양한 타입 연산자들을 결합함으로써 복잡한 연산과 값을 간결하고 유지 관리하기 쉬운 방식으로 표현할 수 있습니다. 이 섹션에서는 기존 타입 또는 값으로 새 타입을 표현하는 방법을 다룹니다.
15
13
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