bigbuffet-rw/packages/pl-api/lib/responses.ts
marcin mikołajczak 036fa32cd3 Add pl-api to workspace
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
2024-08-28 13:43:23 +02:00

11 lines
243 B
TypeScript

interface PaginatedResponse<T> {
previous: (() => Promise<PaginatedResponse<T>>) | null;
next: (() => Promise<PaginatedResponse<T>>) | null;
items: Array<T>;
partial: boolean;
total?: number;
}
export type {
PaginatedResponse,
};