8 lines
194 B
TypeScript
8 lines
194 B
TypeScript
import { z } from "zod";
|
|
|
|
export const ZGetByUserIdInputSchema = z.object({
|
|
userId: z.optional(z.number()),
|
|
});
|
|
|
|
export type TGetByUserIdInputSchema = z.infer<typeof ZGetByUserIdInputSchema>;
|