UNPKG

@rxap/open-api

Version:

This package provides tools for working with OpenAPI specifications in Angular applications. It includes services for configuring and loading OpenAPI definitions, validating requests and responses against schemas, and handling errors. It also offers utili

10 lines (9 loc) 434 B
import { HttpErrorResponse } from '@angular/common/http'; import { OpenApiMetaData } from './open-api.meta-data'; export declare class OpenApiHttpResponseError extends HttpErrorResponse { readonly httpErrorResponse: HttpErrorResponse; readonly metadata: OpenApiMetaData; constructor(httpErrorResponse: HttpErrorResponse, metadata: OpenApiMetaData); get operationId(): string; get serverId(): string | undefined; }