Skipping `Schema.String` Parsing for Known String Type
Since, we already know that
x is of type string, is there a way to make effect schema skip the Schema.String parsing and only apply the Schema.minLength(1) parsing on x?xxstringSchema.StringSchema.minLength(1)const xSchema = Schema.String.pipe(Schema.minLength(1));
function something(x: string) {
const parsedX = Schema.decodeUnknownSync(xSchema)(x);
}