Interface IErrorCaptureDialogService<Error>

interface IErrorCaptureDialogService<Error = any> {
    open(
        component: ComponentType<IErrorDialogComponent<any>>,
        errorList: WritableSignal<Error[]>,
    ): Observable<void>;
}

Type Parameters

  • Error = any

Implemented by

Methods

Methods