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 valueTypes. 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]: valueTypes