const schema = pipe(S.string, S.nonEmpty()) // => S.Schema<string, any>
// Requires explicit type argument to be passed
const schemaTwo = pipe(S.string, S.nonEmpty<string>())
const schema = pipe(S.string, S.nonEmpty()) // => S.Schema<string, any>
// Requires explicit type argument to be passed
const schemaTwo = pipe(S.string, S.nonEmpty<string>())