/**
 * Interface representing an error.
 */
export interface Error {
    status: number;
    title: string;
    message?: string;
}
