UNPKG

drizzle-cursor

Version:

Utils for Drizzle ORM cursor based pagination

9 lines (6 loc) 213 B
import type { AnyColumn } from "drizzle-orm"; export type Cursor = { order?: "ASC" | "DESC"; key: string; schema: AnyColumn }; export type CursorConfig = { primaryCursor: Cursor; cursors?: Array<Cursor>; };