MCPcopy
hub / github.com/watercrawl/WaterCrawl / PaginatedResponse

Interface PaginatedResponse

frontend/src/types/common.ts:1–6  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1export interface PaginatedResponse<T> {
2 count: number;
3 next: string | null;
4 previous: string | null;
5 results: T[];
6}
7export interface ApiError {
8 message?: string;
9 errors?: Record<string, string[]>;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected