/* eslint-disable @typescript-eslint/no-explicit-any */ import { ApiError } from "./apiError"; export class ApiResponse { data: T | undefined; error: ApiError | any | undefined; }