일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- useAppDispatch
- TS
- 결정 알고리즘
- 공변성
- 무한 스크롤
- autosize
- 반공변성
- 타입 좁히기
- CI/CD
- webpack
- dfs
- CORS
- 호이스팅
- map
- recoil
- React
- 인터섹션
- Cypress
- app router
- Jest
- 리터럴 타입
- SSR
- async/await
- 투포인터
- tailwind
- RTK Query
- Promise
- ESlint
- 태그된 유니온
- 이분 검색
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