bigbuffet-rw/packages/pl-api/lib/responses.ts

12 lines
243 B
TypeScript
Raw Normal View History

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