8 lines
167 B
TypeScript
8 lines
167 B
TypeScript
import { z } from "zod";
|
|
|
|
export const ZDeleteInputSchema = z.object({
|
|
teamId: z.number(),
|
|
});
|
|
|
|
export type TDeleteInputSchema = z.infer<typeof ZDeleteInputSchema>;
|