UNPKG
drizzle-cursor
Version:
latest (0.5.3)
0.5.3
0.5.2
0.5.1
0.5.0
0.4.1
0.4.0
0.3.2
0.3.1
0.3.0
0.2.1
0.2.0
0.1.0
0.0.3
0.0.2
0.0.1
Utils for Drizzle ORM cursor based pagination
drizzle-cursor
/
src
/
types.ts
9 lines
(6 loc)
•
213 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
import
type
{
AnyColumn
}
from
"drizzle-orm"
;
export
type
Cursor
= {
order
?:
"ASC"
|
"DESC"
;
key
:
string
;
schema
:
AnyColumn
};
export
type
CursorConfig
= {
primaryCursor
:
Cursor
;
cursors
?:
Array
<
Cursor
>; };