Skip to content

Type Alias: DictionaryType

ts
type DictionaryType = object;

Internal

DictionaryType is a type that represents an object with string keys and values of type ValueType.

This type is used to define a dictionary-like structure where each key maps to a value of various types.

Index Signature

ts
[key: string]: ValueType

See

ValueType