10 lines
221 B
TypeScript
10 lines
221 B
TypeScript
import { z } from "zod";
|
|
|
|
export const ZAddClientInputSchema = z.object({
|
|
name: z.string(),
|
|
redirectUri: z.string(),
|
|
logo: z.string(),
|
|
});
|
|
|
|
export type TAddClientInputSchema = z.infer<typeof ZAddClientInputSchema>;
|