UNPKG

express-openapi-validator

Version:

Automatically validate API requests and responses with OpenAPI 3 and Express.

11 lines (10 loc) 369 B
import { NormalizedOpenApiValidatorOpts, Options, RequestValidatorOptions } from '../types'; export declare class AjvOptions { private options; constructor(options: NormalizedOpenApiValidatorOpts); get preprocessor(): Options; get response(): Options; get request(): RequestValidatorOptions; get multipart(): Options; private baseOptions; }