import { Equal, Expect } from '@type-challenges/utils' type cases = [ Expect>>, Expect>>, ] interface Todo { title: string description: string completed: boolean } interface Expected1 { title: string } interface Expected2 { title: string completed: boolean }