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