일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
31 |
Tags
- 호이스팅
- 타입 좁히기
- tailwind
- dfs
- SSR
- CI/CD
- 태그된 유니온
- 무한 스크롤
- webpack
- map
- 리터럴 타입
- 인터섹션
- 결정 알고리즘
- CORS
- useAppDispatch
- React
- app router
- MSA
- RTK Query
- ESlint
- 반공변성
- TS
- autosize
- 공변성
- 인증/인가
- async/await
- 투포인터
- recoil
- Jest
- Promise
Archives
- Today
- Total
목록infer (1)
짧은코딩
infer로 타입 추론(with 컨디셔널 타입)
infer란? infer로 타입 추론을 극한으로 활용할 수 있다. 컨디셔널 타입과 같이 사용할 수 있다. 컨디셔널 타입(Conditional Type)이란? type A1 = string; type B1 = A1 extends string ? number : boolean; // number type A2 = number; type B2 = A2 extends string ? number : boolean; // boolean 특정 타입 extends 다른 타입 ? 참일 때 타입 : 거짓일 때 타입 특정 타입이 다른 타입의 부분집합일 때 참이 된다. infer의 예시들 배열의 요소 타입을 얻고 싶은 경우 type El = T extends (infer E) [] ? E : never; type Str =..
TS/TS(with ZeroCho)
2023. 11. 11. 00:26