const test = Schema.TemplateLiteral(
Schema.Literal("A", "B", "C"),
Schema.String.pipe(Schema.pattern(/^\d+$/)).pipe(
Schema.length({ min: 6, max: 7 })
)
)
const test = Schema.TemplateLiteral(
Schema.Literal("A", "B", "C"),
Schema.String.pipe(Schema.pattern(/^\d+$/)).pipe(
Schema.length({ min: 6, max: 7 })
)
)