9 lines
175 B
TypeScript
Raw Normal View History

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