mirror of
https://github.com/documenso/documenso.git
synced 2025-11-14 00:32:43 +10:00
10 lines
228 B
TypeScript
10 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>;
|