8 lines
119 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(),
})
);