mirror of
https://github.com/documenso/documenso.git
synced 2025-11-15 09:12:02 +10:00
9 lines
228 B
TypeScript
9 lines
228 B
TypeScript
import z from 'zod';
|
|
|
|
export const ZCreateBannerByAdminSchema = z.object({
|
|
text: z.string().optional(),
|
|
show: z.boolean().optional(),
|
|
});
|
|
|
|
export type TCreateBannerByAdminSchema = z.infer<typeof ZCreateBannerByAdminSchema>;
|