mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-03-29 05:44:46 -05:00
8 lines
172 B
TypeScript
8 lines
172 B
TypeScript
import * as z from "zod";
|
|
|
|
export const vouchSchema = z.object({
|
|
vouchedId: z.number().int(),
|
|
tier: z.number().int().min(1).max(3),
|
|
region: z.enum(["NA", "EU"]),
|
|
});
|