| 1 | export interface PaginatedResponse<T> { |
| 2 | count: number; |
| 3 | next: string | null; |
| 4 | previous: string | null; |
| 5 | results: T[]; |
| 6 | } |
| 7 | export interface ApiError { |
| 8 | message?: string; |
| 9 | errors?: Record<string, string[]>; |
nothing calls this directly
no outgoing calls
no test coverage detected