Skipping `Schema.String` Parsing for Known String Type

const xSchema = Schema.String.pipe(Schema.minLength(1));

function something(x: string) {
  const parsedX = Schema.decodeUnknownSync(xSchema)(x);
}

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?
Was this page helpful?