bigbuffet-rw/packages/pl-api/lib/responses.ts
marcin mikołajczak b357261ff2 pl-api: Update docs
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
2024-11-29 15:52:33 +01:00

14 lines
347 B
TypeScript

/**
* @category Utils
*/
interface PaginatedResponse<T, IsArray extends boolean = true> {
previous: (() => Promise<PaginatedResponse<T, IsArray>>) | null;
next: (() => Promise<PaginatedResponse<T, IsArray>>) | null;
items: IsArray extends true ? Array<T> : T;
partial: boolean;
total?: number;
}
export type {
PaginatedResponse,
};