class-validator-extended
Version:
Additional validators for class-validator.
21 lines (20 loc) • 803 B
TypeScript
import type { ValidationOptions } from 'class-validator';
/** @hidden */
export declare const SET_NOT_CONTAINS = "setNotContains";
/**
* Checks if the given value is a [Set](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set)
* which does not contain any of the forbidden values.
*
* #### Example
* ```typescript
* // Ensure the set does not contain the values 'foo' and 'bar'.
* @SetNotContains(['foo', 'bar'])
* values: Set<string>
* ```
*
* @category Set
* @param forbidden The values forbidden in the given set.
* @param options Generic class-validator options.
* @typeParam Value The type of values to check for.
*/
export declare function SetNotContains<Value = unknown>(forbidden: Iterable<Value>, options?: ValidationOptions): PropertyDecorator;