Files
shadcn-ui/deprecated/www/lib/validations/log.ts
shadcn 2bfc1c82ba chore: deprecate www (#8629)
* chore: deprecate www

* chore: updates

* fix
2025-10-29 20:50:55 +04:00

7 lines
131 B
TypeScript

import { z } from "zod"
export const logSchema = z.object({
event: z.enum(["copy_primitive"]),
data: z.record(z.string()),
})