8 lines
187 B
TypeScript
8 lines
187 B
TypeScript
|
import { z } from "zod";
|
||
|
|
||
|
export const ZGetMembersInput = z.object({
|
||
|
teamIdToExclude: z.number().optional(),
|
||
|
});
|
||
|
|
||
|
export type TGetMembersInputSchema = z.infer<typeof ZGetMembersInput>;
|