valitype
    Preparing search index...

    Variable validatorsConst

    validators: {
        all: (...validators: CustomValidatorFn[]) => CustomValidatorFn;
        awsArn: (service?: string, errorMsg?: string) => CustomValidatorFn;
        date: (format?: string, errorMsg?: string) => CustomValidatorFn;
        json: (errorMsg?: string) => CustomValidatorFn;
        oneOf: (allowedValues: unknown[], errorMsg?: string) => CustomValidatorFn;
        range: (min: number, max: number, errorMsg?: string) => CustomValidatorFn;
        regex: (pattern: RegExp, errorMsg?: string) => CustomValidatorFn;
    } = ...

    Type declaration