일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- :=
- 도커컨테이너
- Svelte LifeCycle
- GIT
- githook
- ...$$restProps
- cron
- onDestory
- IAC
- 인라인핸들러
- 도커
- bitwiseNot
- 번역
- react
- svelte
- mock
- go
- docker
- Terraform
- testing
- apiTest
- PostgreSQL
- TypeScript
- reactjs
- GraphQL
- JavaScript
- nestjs
- docker-network
- smui
- golang
Archives
- Today
- Total
목록Typescript (1)
Den`s blog
Indexable
코드의 실행시점에서만 알 수 있는 Type/Key 들이 있는데, 이를 정의를 하고 싶다, 꼼꼼해지려면 뭐 예를 들어 오브젝트를 받긴 할건데 이 것의 값들이 동적으로 변해야하는 상황 (예를 들면 여러 API 를 통합하는 것이 될 수 있다) 그럴 때 사용할 수 있는 것이 Indexable 이다. 코드부터 보고 시작하자. interface Indexable { [key: string]: any; } Index Signature [] 로 감싸주면 된다. const indexable: Indexable = { test1: 1, test2: 2, test3: 3, }; Object.keys(indexable).forEach((k) => console.log(indexable[k])); // 1, 2, 3 해당 문법..
Typescript
2021. 1. 30. 14:40