import { StatusCode } from '../types/status-code.type'; export interface APIRequest { _id?: string; } export interface APIResponse { _id?: string; statusCode: StatusCode; errorMessage: string; }