mirror of
https://github.com/documenso/documenso
synced 2026-05-04 22:08:18 +00:00
9 lines
228 B
TypeScript
9 lines
228 B
TypeScript
import { z } from 'zod';
|
|
|
|
export const ZSiteSettingsBaseSchema = z.object({
|
|
id: z.string().min(1),
|
|
enabled: z.boolean(),
|
|
data: z.never(),
|
|
});
|
|
|
|
export type TSiteSettingsBaseSchema = z.infer<typeof ZSiteSettingsBaseSchema>;
|