8 lines
163 B
TypeScript
8 lines
163 B
TypeScript
import { z } from "zod";
|
|
|
|
export const ZAdminVerifyInput = z.object({
|
|
orgId: z.number(),
|
|
});
|
|
|
|
export type TAdminVerifyInput = z.infer<typeof ZAdminVerifyInput>;
|