Geoff
Results
3
comments of
Geoff
Just some thoughts I had about this feature. I think in general SuperStruct wants its user to start with the most restrictive validation, and then gradually loosen it with `optional`...
This could be rebased onto main now that the tests are running on something newer!
I would use `type` here. ```typescript import { assert, string, type } from 'superstruct' const myStruct = type({ name: string() }) const data = { name: 'yeoffrey', age: 23, }...