mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-23 12:45:47 +00:00
7 lines
131 B
TypeScript
7 lines
131 B
TypeScript
import { z } from "zod"
|
|
|
|
export const logSchema = z.object({
|
|
event: z.enum(["copy_primitive"]),
|
|
data: z.record(z.string()),
|
|
})
|