Entry couple [key, value].
[key, value]
It is a tuple of two elements, the first one being the key and the second one being the value of an object's property.
const entry: Entry<string, number> = ["🟢", 1]; Copy
const entry: Entry<string, number> = ["🟢", 1];
Object's properties type.
Object's values type.
Entry couple
[key, value]
.Remarks
It is a tuple of two elements, the first one being the key and the second one being the value of an object's property.
Example