tianji/prisma/zod/schemas/index.ts

9 lines
175 B
TypeScript
Raw Normal View History

2023-12-13 10:21:04 +00:00
import { z } from 'zod';
export const MonitorStatusPageListSchema = z.array(
z.object({
id: z.string(),
showCurrent: z.boolean().default(false).optional(),
2023-12-13 10:21:04 +00:00
})
);