DictionarySchemaOptionsinterface

{
	readonly items: Schema<T>;
	readonly value?: ImmutableDictionary | undefined;
	readonly min?: number | undefined;
	readonly max?: number | undefined;
}
PropertyType
.itemsSchema<T>
Schema every entry value in the dictionary must conform to. required readonly
.valueImmutableDictionary
Default dictionary used when the input is undefined. readonly
.minnumber
Minimum number of entries. Defaults to 0 readonly
.maxnumber
Maximum number of entries. Defaults to Number.POSITIVE_INFINITY readonly

Options for DictionarySchema.