Skip to content

IAjvSettings

@tsed/ajv

Usage

typescript
import { IAjvSettings } from "@tsed/ajv";

See /packages/specs/ajv/src/types/interfaces/IAjvSettings.ts.

Overview

ts
interface IAjvSettings extends Options {
    Ajv?: any;
    errorFormatter?: ErrorFormatter;
    returnsCoercedValues?: boolean;
}

Ajv

ts
Ajv?: any;

errorFormatter

ts
errorFormatter?: ErrorFormatter;

returnsCoercedValues

ts
returnsCoercedValues?: boolean;

Released under the MIT License.