JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr{ gilour

File "backend-error-response.ts"

Full Path: /home/markqprx/iniasli.pro/resources/client/errors/backend-error-response.ts
File size: 282 bytes
MIME-type: text/plain
Charset: utf-8

export interface BackendErrorMessages {
  [key: string]: string | string[];
}

export interface BackendErrorResponse<T = BackendErrorMessages> {
  errors?: T;
  message?: string;
  exception?: string;
  action?: {label: string; action: string};
  status: number;
  type?: string;
}