DictValidator
Table of contents
Public class
Signature
class DictValidator<Key extends string, Value> extends Validator<
Record<Key, Value>
> {}
References
Source
packages/validate/src/lib/validation.ts
Constructor
Public constructor
Constructs a new instance of the DictValidator
class
Parameters
Name | Description |
---|---|
|
|
|
|
References
Properties
keyValidator
Public readonly property
Signature
readonly keyValidator: Validatable<Key>
References
valueValidator
Public readonly property
Signature
readonly valueValidator: Validatable<Value>
References