src/lib/error/angular-error-dialog-data.ts
Properties |
| contexts |
contexts:
|
Type : Record<string | Record<string, >>
|
| extra |
extra:
|
Type : Record<string | >
|
| message |
message:
|
Type : string
|
| name |
name:
|
Type : string
|
| Optional |
| stack |
stack:
|
Type : string
|
| Optional |
| tags |
tags:
|
Type : Record<string | string>
|
export interface AngularErrorDialogData {
name?: string;
message: string;
stack?: string;
contexts: Record<string, Record<string, unknown>>;
extra: Record<string, unknown>;
tags: Record<string, string>;
}