-
Notifications
You must be signed in to change notification settings - Fork 0
CustomData
Ajša Terko edited this page Feb 15, 2024
·
3 revisions
type CustomData = { [key: string]: string }
Defined as a map in which the keys and values are of type
string
.
let customData: CustomData = {
'city': 'New York',
'country': 'USA'
}