1 2 3 4 5 6 7 8
import { z } from "zod"; export const zCursorV2 = z.object({ createdAt: z.date(), id: z.string(), }); export type ZCursor = z.infer<typeof zCursorV2>;