interface Props {
  a: string
  b: number
  c: Date
  d: string
}

type StringOnly = ? // a | d


이런식으로 특정 타입을 가진 것만 키로 뽑아올수 있나요?