interface Props {
schema: Schema.? //<-- What to put here? Is Schema.Schema<unknown, unknown, never> the way to go?
}
function doThing(props: Props) {
const someOutput = Schema.decodeUnknownSync(props.schema)(someInput)
}
interface Props {
schema: Schema.? //<-- What to put here? Is Schema.Schema<unknown, unknown, never> the way to go?
}
function doThing(props: Props) {
const someOutput = Schema.decodeUnknownSync(props.schema)(someInput)
}