9 lines
188 B
TypeScript
9 lines
188 B
TypeScript
|
import { z } from "zod";
|
||
|
|
||
|
export const ZVerifyInputSchema = z.object({
|
||
|
name: z.string(),
|
||
|
isTeam: z.boolean(),
|
||
|
});
|
||
|
|
||
|
export type TVerifyInputSchema = z.infer<typeof ZVerifyInputSchema>;
|