Idiomatic Naming for Schemas & Types
naming question: It seems like it's idiomatic to have the type name be identical to the schema name, as in
is that correct?
is that correct?
const Person = S.Struct({
name: S.String,
age: S.NumberFromString,
})
type Person = typeof Person.Type