8 lines
184 B
TypeScript
8 lines
184 B
TypeScript
|
import { z } from "zod";
|
||
|
|
||
|
export const ZDeleteInviteInputSchema = z.object({
|
||
|
token: z.string(),
|
||
|
});
|
||
|
|
||
|
export type TDeleteInviteInputSchema = z.infer<typeof ZDeleteInviteInputSchema>;
|