mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-10 04:40:46 -05:00
9 lines
189 B
TypeScript
9 lines
189 B
TypeScript
import { z } from "zod";
|
|
|
|
export type SeedVariations = z.infer<typeof SeedVariationsSchema>;
|
|
export const SeedVariationsSchema = z.enum([
|
|
"check-in",
|
|
"match",
|
|
"tournament-start",
|
|
]);
|