export interface ErrorResponse {
    status: 'error';
    code: number;
    errorType: string;
    message: string;
}
