Omit
提出詳細
type MyOmit<T, K extends keyof T> = { [key in keyof T as key extends K ? never : key] : T[key] }
提出日時 | 2024-08-28 22:37:04 |
---|---|
問題 | Omit |
ユーザー | Katsukiniwa |
ステータス | Accepted |
import type { Equal, Expect } from '@type-challenges/utils' type cases = [ Expect<Equal<Expected1, MyOmit<Todo, 'description'>>>, Expect<Equal<Expected2, MyOmit<Todo, 'description' | 'completed'>>>, ] // @ts-expect-error type error = MyOmit<Todo, 'description' | 'invalid'> interface Todo { title: string description: string completed: boolean } interface Expected1 { title: string completed: boolean } interface Expected2 { title: string }