8 lines
172 B
TypeScript
8 lines
172 B
TypeScript
|
import { z } from "zod";
|
||
|
|
||
|
export const ZFormQueryInputSchema = z.object({
|
||
|
id: z.string(),
|
||
|
});
|
||
|
|
||
|
export type TFormQueryInputSchema = z.infer<typeof ZFormQueryInputSchema>;
|