mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-11 21:29:09 -05:00
5 lines
160 B
TypeScript
5 lines
160 B
TypeScript
import { z } from "zod";
|
|
|
|
export type SeedVariations = z.infer<typeof SeedVariationsSchema>;
|
|
export const SeedVariationsSchema = z.enum(["check-in", "match"]);
|