src/lib/error-capture-dialog/types.ts
Properties |
| component |
component:
|
Type : ComponentType<any>
|
| errorList |
errorList:
|
Type : WritableSignal<Error[]>
|
import { ComponentType } from '@angular/cdk/overlay';
import { WritableSignal } from '@angular/core';
export interface ErrorCaptureDialogData<Error = any> {
errorList: WritableSignal<Error[]>;
component: ComponentType<any>;
}