Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- const 단언문
- 타입좁히기
- 폰트적용하기
- 공통컴포넌트
- 커스텀
- returnType
- 리액트
- TSDoc
- Chart.js
- React.js
- utilty type
- React Native
- 제네릭
- 개발콘텐츠
- CSS
- 레이아웃쪼개기
- 티스토리꾸미기
- vue.js
- 2022
- 누구나 자료구조와 알고리즘
- 타입스크립트
- reactjs
- react
- NonNullable
- 성능최적화
- JS console
- 반복줄이기
- javascript
- typescript
- click and drag
Archives
- Today
- Total
목록반복줄이기 (1)
몽땅뚝딱 개발자
[TypeScript] 이렇게도 사용할 수 있다! (1)
CASE 1. Action 유니온을 인덱싱하여 반복 없애기 interface SaveAction { type: 'save'; // ... } interface LoadAction { type: 'load'; // ... } type Action = SaveAction | LoadAction type ActionType = 'save' | 'load' // 타입이 반복된다. // Action 유니온을 인덱싱하면 타입 반복 없이 ActionType을 정의할 수 있다. type ActionType = Action['type'] // 타입은 'save' | 'load' // 하지만 pick을 사용하면 다른 결과를 얻는다. type ActionRec = Pick // {type: 'save' | 'load'} C..
Development/Typescript
2022. 11. 21. 19:18