I have the following type(s):
const type Person = [string, number, number]
const type Person = [
string, // name
number, // age
number // height
]
Is it possible to add comments to what the elements are? Or any conventions? Like with function: Where is the syntax for TypeScript comments documented?