Create a schema that accepts one of the given values using strict equality (===).
function enum_<values extends readonly [unknown, unknown]>(
values: values,
): Schema<unknown, values[number]>
A schema that produces the union of allowed value types