8 lines
119 B
TypeScript
8 lines
119 B
TypeScript
import { z } from 'zod';
|
|
|
|
export const MonitorStatusPageListSchema = z.array(
|
|
z.object({
|
|
id: z.string(),
|
|
})
|
|
);
|