@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
6 lines (5 loc) • 421 B
TypeScript
import { OpenAPIV3 } from 'openapi-types';
export declare function IsReferenceObject(obj?: any): obj is OpenAPIV3.ReferenceObject;
export declare function NotContainsReferenceObjects<T>(array?: Array<OpenAPIV3.ReferenceObject | T | undefined>): array is T[];
export declare function IsOpenApiV3(obj?: any): obj is OpenAPIV3.Document;
export declare function AssertOpenApiV3(obj?: any): asserts obj is OpenAPIV3.Document;