CustomData - infobip/infobip-rtc-js GitHub Wiki
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'
}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'
}