반응형
문제
0과 01에서 차이가 있는 개체를 가져옵니다
설명
/* _____________ Your Code Here _____________ */
type Diff<T, K> = Omit<T&K, keyof (T | K)>
/* _____________ Test Cases _____________ */
import type { Equal, Expect } from '@type-challenges/utils'
type Foo = {
name: string
age: string
}
type Bar = {
name: string
age: string
gender: number
}
type Coo = {
name: string
gender: number
}
type cases = [
Expect<Equal<Diff<Foo, Bar>, { gender: number }>>,
Expect<Equal<Diff<Bar, Foo>, { gender: number }>>,
Expect<Equal<Diff<Foo, Coo>, { age: string; gender: number }>>,
Expect<Equal<Diff<Coo, Foo>, { age: string; gender: number }>>,
]
Omit을 이용합니다
Omit은 특정 속성만 제거한 타입을 가져올 수 있습니다.
T와 K에 동시에 존재하는 속성을 제거한 나머지만 가져옴으로써 해결할 수 있습니다~!
Pick으로도 한번 해볼까..? 고민해봤지만...
그냥 넘겼습니다 :)
좋은 방법이 있다면 알려주세요!
반응형
'✍ 공부 > TypeScript' 카테고리의 다른 글
[type-challenges] IsNever (0) | 2023.07.04 |
---|---|
[type-challenges] AnyOf< {[key:string]:never}와 {} type은 뭐가 다를까?> (0) | 2023.07.04 |
[type-challenges] KebabCase (0) | 2023.07.03 |
A = [{ a:string, b:string}]와 type B = { a:string, b:string}[]의 차이가 뭘까요? (0) | 2023.07.01 |
[type-challenges] Merge (0) | 2023.06.27 |