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 | 31 |
Tags
- ReactHooks
- backend
- go
- typescript
- golang
- javascript
- springboot
- storybook
- Gin
- component
- React
- Chakra
- 웹애플리케이션서버
- tanstackquery
- css
- test
- Redux
- 오블완
- hook
- JPA
- RTK
- react-hook-form
- Spring
- satisfiles
- 티스토리챌린지
- JavaSpring
- frontend
- java
- designpatterns
Archives
- Today
- Total
bkdragon's log
key in keyof T as key extends K ? never : key ??? 본문
what the ?
제목의 문장은 아래의 문제를 풀면서 만나게 되었다.
어려워보이지만 사실 별 거 없다. 난 as를 '그런데'로 해석하기로 했다.
key는 T의 키 값들이다. '그런데' key가 k에 포함되면(부분집합이면) never이고 아니면 그대로 key이다.
쉽지 않은가?
type MyReadonly2<T, K extends keyof T = keyof T> = {
readonly [key in keyof Pick<T,K>] : T[key]
} & {
[key in keyof T as key extends K ? never : key] : T[key]
}
T에서 k에 포함되는 key들은 readonly로,
그렇지 않은 key들은 그대로 반환하는 타입을 완성했다.
'Typescript' 카테고리의 다른 글
Template Literal Types (0) | 2023.04.04 |
---|---|
Conditional types (0) | 2023.03.22 |
Chainable Options (0) | 2023.03.14 |
Deep Readonly (0) | 2023.03.10 |
T[number] 란? (0) | 2023.03.02 |