Schema.Literal
code:ts
const schema = Schema.Literal("a", "b", "c")
type Type = typeof schema.Type // "a" | "b" | "c"
const literals = schema.literals // readonly
"a", "b", "c"