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

8 lines
178 B
TypeScript

import { z } from "zod";
export const ZGetClientInputSchema = z.object({
clientId: z.string(),
});
export type TGetClientInputSchema = z.infer<typeof ZGetClientInputSchema>;