7 lines
88 B
TypeScript
7 lines
88 B
TypeScript
|
|
export type PaginationArgs = {
|
|
limit?: number,
|
|
offset?: number,
|
|
start?: number
|
|
}
|