Issue with `S.Class<Person>` in Schema README

In the Schema README shouldn’t S.Class<Person> be S.Class<"Person"> instead?
https://github.com/Effect-TS/schema?tab=readme-ov-file#the-benefits-of-using-classes

// Error: Recursive type `Person` 👇
class Person extends S.Class<Person>()({
  id: S.number,
  name: S.string.pipe(S.nonEmpty()),
}) {
  get upperName() {
    return this.name.toUpperCase();
  }
}
Was this page helpful?