This is the proper syntax for destructuring an array inside an argument list:
function f([a,b,c]: [number, number, number]) {
}
This is the proper syntax for destructuring an array inside an argument list:
function f([a,b,c]: [number, number, number]) {
}