bitfront-library
Version:
Angular CLI project with components and classes used by other Angular projects of the BIT foundation.
15 lines (14 loc) • 463 B
TypeScript
/**
* Clase base que contiene la información sobre un error producido en la aplicación.
*/
export declare class Error {
url: string;
textCA: string;
textES: string;
text: string;
trazaError?: any;
notificacion?: boolean;
masInfo?: string;
multipleText?: string[];
constructor(url: string, textCA: string, textES: string, text: string, trazaError?: any, notificacion?: boolean, masInfo?: string, multipleText?: string[]);
}