8 lines
154 B
TypeScript
8 lines
154 B
TypeScript
|
import { z } from "zod";
|
||
|
|
||
|
export const ZGetInputSchema = z.object({
|
||
|
id: z.number(),
|
||
|
});
|
||
|
|
||
|
export type TGetInputSchema = z.infer<typeof ZGetInputSchema>;
|