Files
web/types/requests/contentTypeUid.ts
2024-04-29 14:31:30 +02:00

14 lines
260 B
TypeScript

import z from "zod"
export const validateContentTypeUid = z.object({
all_content_page: z.object({
total: z.number(),
}),
all_loyalty_page: z.object({
total: z.number(),
}),
all_current_blocks_page: z.object({
total: z.number(),
}),
})