Skip to main content

Class: SetValidator<T>

Extends

Type Parameters

Type Parameter
T

Constructors

new SetValidator()

new SetValidator<T>(validator: BaseValidator<T>, validatorOptions?: ValidatorOptions, constraints?: readonly IConstraint<Set<T>, Set<T>>[]): SetValidator<T>

Parameters

ParameterTypeDefault value
validatorBaseValidator<T>undefined
validatorOptions?ValidatorOptionsundefined
constraints?readonly IConstraint<Set<T>, Set<T>>[][]

Returns

SetValidator<T>

Overrides

BaseValidator.constructor

Defined in

projects/shapeshift/src/validators/SetValidator.ts:12

Properties

constraints

protected constraints: readonly IConstraint<Set<T>, Set<T>>[] = []

Inherited from

BaseValidator.constraints

Defined in

projects/shapeshift/src/validators/BaseValidator.ts:19


description?

optional description: string

Inherited from

BaseValidator.description

Defined in

projects/shapeshift/src/validators/BaseValidator.ts:16


isValidationEnabled

protected isValidationEnabled: null | boolean | () => boolean = null

Inherited from

BaseValidator.isValidationEnabled

Defined in

projects/shapeshift/src/validators/BaseValidator.ts:20


parent?

protected optional parent: object

Inherited from

BaseValidator.parent

Defined in

projects/shapeshift/src/validators/BaseValidator.ts:18


validatorOptions

protected validatorOptions: ValidatorOptions

Inherited from

BaseValidator.validatorOptions

Defined in

projects/shapeshift/src/validators/BaseValidator.ts:17

Accessors

shouldRunConstraints

get protected shouldRunConstraints(): boolean

Returns

boolean

Inherited from

BaseValidator.shouldRunConstraints

Defined in

projects/shapeshift/src/validators/BaseValidator.ts:143

Methods

addConstraint()

protected addConstraint(constraint: IConstraint<Set<T>, Set<T>>, validatorOptions: ValidatorOptions): this

Parameters

ParameterType
constraintIConstraint<Set<T>, Set<T>>
validatorOptionsValidatorOptions

Returns

this

Inherited from

BaseValidator.addConstraint

Defined in

projects/shapeshift/src/validators/BaseValidator.ts:155


array()

array(options: ValidatorOptions): ArrayValidator<Set<T>[], Set<T>>

Parameters

ParameterType
optionsValidatorOptions

Returns

ArrayValidator<Set<T>[], Set<T>>

Inherited from

BaseValidator.array

Defined in

projects/shapeshift/src/validators/BaseValidator.ts:44


clone()

protected clone(): this

Returns

this

Overrides

BaseValidator.clone

Defined in

projects/shapeshift/src/validators/SetValidator.ts:17


default()

default(value: Set<T> | () => Set<T>, options: ValidatorOptions): DefaultValidator<Set<T>>

Parameters

ParameterType
valueSet<T> | () => Set<T>
optionsValidatorOptions

Returns

DefaultValidator<Set<T>>

Inherited from

BaseValidator.default

Defined in

projects/shapeshift/src/validators/BaseValidator.ts:81


describe()

describe(description: string): this

Parameters

ParameterType
descriptionstring

Returns

this

Inherited from

BaseValidator.describe

Defined in

projects/shapeshift/src/validators/BaseValidator.ts:96


getValidationEnabled()

getValidationEnabled(): null | boolean

Returns

null | boolean

Inherited from

BaseValidator.getValidationEnabled

Defined in

projects/shapeshift/src/validators/BaseValidator.ts:139


handle()

protected handle(values: unknown): Result<Set<T>, ValidationError | CombinedError>

Parameters

ParameterType
valuesunknown

Returns

Result<Set<T>, ValidationError | CombinedError>

Overrides

BaseValidator.handle

Defined in

projects/shapeshift/src/validators/SetValidator.ts:21


is()

is<R>(value: unknown): value is R

Type Parameters

Type ParameterDefault type
R extends Set<T>Set<T>

Parameters

ParameterType
valueunknown

Returns

value is R

Inherited from

BaseValidator.is

Defined in

projects/shapeshift/src/validators/BaseValidator.ts:124


nullable()

nullable(options: ValidatorOptions): UnionValidator<null | Set<T>>

Parameters

ParameterType
optionsValidatorOptions

Returns

UnionValidator<null | Set<T>>

Inherited from

BaseValidator.nullable

Defined in

projects/shapeshift/src/validators/BaseValidator.ts:36


nullish()

nullish(options: ValidatorOptions): UnionValidator<undefined | null | Set<T>>

Parameters

ParameterType
optionsValidatorOptions

Returns

UnionValidator<undefined | null | Set<T>>

Inherited from

BaseValidator.nullish

Defined in

projects/shapeshift/src/validators/BaseValidator.ts:40


optional()

optional(options: ValidatorOptions): UnionValidator<undefined | Set<T>>

Parameters

ParameterType
optionsValidatorOptions

Returns

UnionValidator<undefined | Set<T>>

Inherited from

BaseValidator.optional

Defined in

projects/shapeshift/src/validators/BaseValidator.ts:32


or()

or<O>(...predicates: readonly BaseValidator<O>[]): UnionValidator<Set<T> | O>

Type Parameters

Type Parameter
O

Parameters

ParameterType
...predicatesreadonly BaseValidator<O>[]

Returns

UnionValidator<Set<T> | O>

Inherited from

BaseValidator.or

Defined in

projects/shapeshift/src/validators/BaseValidator.ts:52


parse()

parse<R>(value: unknown): R

Type Parameters

Type ParameterDefault type
R extends Set<T>Set<T>

Parameters

ParameterType
valueunknown

Returns

R

Inherited from

BaseValidator.parse

Defined in

projects/shapeshift/src/validators/BaseValidator.ts:114


reshape()

reshape(cb, options)

reshape(cb: (input: Set<T>) => Result<Set<T>, Error>, options?: ValidatorOptions): this

Parameters
ParameterType
cb(input: Set<T>) => Result<Set<T>, Error>
options?ValidatorOptions
Returns

this

Inherited from

BaseValidator.reshape

Defined in

projects/shapeshift/src/validators/BaseValidator.ts:67

reshape(cb, options)

reshape<R, O>(cb: (input: Set<T>) => R, options?: ValidatorOptions): BaseValidator<O>

Type Parameters
Type ParameterDefault type
R extends Result<unknown, Error>-
OInferResultType<R>
Parameters
ParameterType
cb(input: Set<T>) => R
options?ValidatorOptions
Returns

BaseValidator<O>

Inherited from

BaseValidator.reshape

Defined in

projects/shapeshift/src/validators/BaseValidator.ts:68


run()

run(value: unknown): Result<Set<T>, BaseError>

Parameters

ParameterType
valueunknown

Returns

Result<Set<T>, BaseError>

Inherited from

BaseValidator.run

Defined in

projects/shapeshift/src/validators/BaseValidator.ts:102


set()

set(options: ValidatorOptions): SetValidator<Set<T>>

Parameters

ParameterType
optionsValidatorOptions

Returns

SetValidator<Set<T>>

Inherited from

BaseValidator.set

Defined in

projects/shapeshift/src/validators/BaseValidator.ts:48


setParent()

setParent(parent: object): this

Parameters

ParameterType
parentobject

Returns

this

Inherited from

BaseValidator.setParent

Defined in

projects/shapeshift/src/validators/BaseValidator.ts:27


setValidationEnabled()

setValidationEnabled(isValidationEnabled: null | boolean | () => boolean): this

Sets if the validator should also run constraints or just do basic checks.

Parameters

ParameterTypeDescription
isValidationEnablednull | boolean | () => booleanWhether this validator should be enabled or disabled. You can pass boolean or a function returning boolean which will be called just before parsing. Set to null to go off of the global configuration.

Returns

this

Inherited from

BaseValidator.setValidationEnabled

Defined in

projects/shapeshift/src/validators/BaseValidator.ts:133


transform()

transform(cb, options)

transform(cb: (value: Set<T>) => Set<T>, options?: ValidatorOptions): this

Parameters
ParameterType
cb(value: Set<T>) => Set<T>
options?ValidatorOptions
Returns

this

Inherited from

BaseValidator.transform

Defined in

projects/shapeshift/src/validators/BaseValidator.ts:56

transform(cb, options)

transform<O>(cb: (value: Set<T>) => O, options?: ValidatorOptions): BaseValidator<O>

Type Parameters
Type Parameter
O
Parameters
ParameterType
cb(value: Set<T>) => O
options?ValidatorOptions
Returns

BaseValidator<O>

Inherited from

BaseValidator.transform

Defined in

projects/shapeshift/src/validators/BaseValidator.ts:57


when()

when<Key, This>(key: Key, options: WhenOptions<This, Key>, validatorOptions?: ValidatorOptions): this

Type Parameters

Type ParameterDefault type
Key extends WhenKey-
This extends BaseValidator<any>SetValidator<T>

Parameters

ParameterType
keyKey
optionsWhenOptions<This, Key>
validatorOptions?ValidatorOptions

Returns

this

Inherited from

BaseValidator.when

Defined in

projects/shapeshift/src/validators/BaseValidator.ts:88