cal.pub0.org/packages/trpc/server/routers/publicViewer/i18n.schema.ts

9 lines
187 B
TypeScript
Raw Normal View History

import { z } from "zod";
export const i18nInputSchema = z.object({
locale: z.string(),
CalComVersion: z.string(),
});
export type I18nInputSchema = z.infer<typeof i18nInputSchema>;