flow-js2-mode
flow-js2-mode copied to clipboard
Type annotation broken in function assigned to a key in an object
The number[] annotation does not parse
function GetQuoteV2(connections) {
}
const v2 = {
GetQuote: async function (connections: number[]) {
return GetQuoteV2(connections)
},
}