UNPKG

@rxap/ngx-error

Version:

This package provides a comprehensive error handling solution for Angular applications, including interceptors, services, and UI components to display different types of errors in a user-friendly dialog. It supports handling of generic errors, HTTP errors

7 lines (6 loc) 252 B
import { AnyHttpErrorDialogData } from '../any-http-error/any-http-error-dialog-data'; export interface MessageHttpErrorDialogData extends Omit<AnyHttpErrorDialogData, 'error'> { error: { message: string; } & Record<string, unknown>; }