cal.pub0.org/packages/trpc/server/routers/viewer/availability/schedule/duplicate.schema.ts

8 lines
189 B
TypeScript
Raw Normal View History

import { z } from "zod";
export const ZScheduleDuplicateSchema = z.object({
scheduleId: z.number(),
});
export type TScheduleDuplicateSchema = z.infer<typeof ZScheduleDuplicateSchema>;