0

I have an io-ts codec that is defined like this:

const userCodec = t.type({
  id: UUIDCodec,
  pass: passCodec
})

export type User = t.TypeOf<typeof userCodec>

I want to know if it's possible to derive this type to get a type like {id: string, pass: string} so that I don't have to define every type two times.

packenbush
  • 90
  • 1
  • 8

0 Answers0