UNPKG

@kubb/ui

Version:

User interface components and web dashboard for Kubb, providing a visual interface for managing and monitoring code generation.

12 lines (9 loc) 280 B
import { z } from '@hono/zod-openapi' export const statusSchema = z .object({ name: z.string().optional(), percentages: z.record(z.string(), z.number()), executed: z.array(z.any()), }) .openapi('Status') export type StatusSchema = z.infer<typeof statusSchema>