Vinyl
    Preparing search index...

    Type Alias PropertyValidatorWithOptions<ValidatorType, T, Options>

    PropertyValidatorWithOptions: Omit<
        ValidatorType,
        keyof PropertyValidator<any, any>,
    > & PropertyValidator<T, Merge<ValidatorType["options"], Options>>

    A utility type for overriding the options type on a validator. This will strip the types of the overridden options and set to the new types.

    Type Parameters