Files
ncd-fe/packages/pl-api/lib/responses.ts
nicole mikołajczyk ad00129411 pl-api: migrate to oxfmt+oxlint
Signed-off-by: nicole mikołajczyk <git@mkljczk.pl>
2026-02-15 03:00:05 +01:00

13 lines
344 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 };