자주 사용하지만 항상 까먹어서 정리해둔다.
1) Union String인 경우
type fruit = "orange" | "strawberry" | "melon"
// Optional인 경우 {[key in fruit]: number}
const fruitPrices: {[key in fruit]: number} = {
orange:10,
strawberry: 20,
melon: 30
}
const fruitPrices2: Record<fruit, number> = {
orange:10,
strawberry: 20,
melon: 30
}
2) Enum인 경우도 동일하지만 위 예제와 동일하게 사용시 value 값을 사용하게 된다.
enum Fruit {
Orange="orange",
Strawberry="strawberry",
Melon="melon",
}
const fruitAmount: {[key in Fruit]: number} = {
orange: 1,
strawberry:2,
melon:3
}
const fruitAmount: Record<Fruit: number>
Enum의 키 값을 사용하고 싶다면 아래처럼 하자
enum Fruit {
Orange="orange",
Strawberry="strawberry",
Melon="melon",
}
const fruitAmount: Record<keyof typeof Fruit, number> = {
Orange:1,
Strawberry:2,
Melon:3
}
'Language > Javascript, typescript' 카테고리의 다른 글
[Typescript] 로컬 저장소에 대한 Lock 구현 (0) | 2022.10.21 |
---|---|
[Typescript] Typescript 기본 세팅 (0) | 2022.08.25 |
[typescript] class-transformer, Object를 클래스로 클래스를 Object로! [1] (0) | 2022.04.14 |
[javascript] 변수로 object 키 설정 (0) | 2022.03.20 |
[typescript] 날짜 String 타입으로 만들기 (0) | 2022.02.26 |