aboutsummaryrefslogtreecommitdiffstats
path: root/packages/shared/types/pagination.ts
blob: 3b9dead4938d9c4a7eb4a96d7a77226321c36b28 (plain) (blame)
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>;