Table of contents

Public class

Signature
class DictValidator<Key extends string, Value> extends Validator<
  Record<Key, Value>
> {}
References

Validator

Source

packages/validate/src/lib/validation.ts


Constructor

Public constructor

Constructs a new instance of the DictValidator class

Parameters
NameDescription

keyValidator

Validatable<Key>

valueValidator

Validatable<Value>
References

Validatable


Properties

keyValidator

Public readonly property

Signature
readonly keyValidator: Validatable<Key>
References

Validatable


valueValidator

Public readonly property

Signature
readonly valueValidator: Validatable<Value>
References

Validatable


ArrayOfValidatorObjectValidator