2
0
Files
cal/calcom/packages/trpc/server/routers/viewer/apps/setDefaultConferencingApp.schema.ts
2024-08-09 00:39:27 +02:00

8 lines
207 B
TypeScript

import { z } from "zod";
export const ZSetDefaultConferencingAppSchema = z.object({
slug: z.string(),
});
export type TSetDefaultConferencingAppSchema = z.infer<typeof ZSetDefaultConferencingAppSchema>;