mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-06-23 21:22:04 -05:00
9 lines
249 B
TypeScript
9 lines
249 B
TypeScript
import { z } from "zod";
|
|
import { updateMatchProfileSchema } from "./match-profile-schemas";
|
|
import { settingsEditSchema } from "./settings-schemas";
|
|
|
|
export const settingsActionSchema = z.union([
|
|
settingsEditSchema,
|
|
updateMatchProfileSchema,
|
|
]);
|