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

18 lines (17 loc) 559 B
import { OperationObjectWithMetadata } from './open-api'; import { BaseRemoteMethodMetadata } from '@rxap/remote-method'; export interface OpenApiMetaData extends BaseRemoteMethodMetadata { /** * The operation object with path and method */ operation?: OperationObjectWithMetadata | string; /** * The index of the server object in the servers array in the open api config */ serverIndex?: number; /** * used to specify the target server for the reset api operation */ serverId?: string; id: string; }