import { ApiDataInterface } from "./ApiDataInterface"; export interface ApiResponseInterface { ok: boolean; response: number; raw?: any; meta?: Record; self?: string; next?: string; prev?: string; nextPage?: () => Promise; prevPage?: () => Promise; data: ApiDataInterface | ApiDataInterface[]; error: string; }