For Windows!
https://www.figma.com/download/desktop/win
For macOS!
https://www.figma.com/download/desktop/mac
figma documentation
// The ': string[]' is an annotation
let list: string[] = []
for (const node of figma.currentPage.selection) {
list.push(node.type)
}
// The ': number' are also annotations
function doThing(x: number, str: string) {
// ...
}