Is there a way to refine a union of tuples correctly in flow? I see examples for object types in docs but looks like it has a difference for arrays and I don't see any clue for that case. I have this simple code:
/* @flow */
type A = ['a', string, string];
type B = ['b', number];
function process(param: A | B) {
if (param[0] === 'a') {
/*
ERROR! Cannot get `param[2]` because `B` [1] only has 2 elements,
so index 2 is out of bounds. [invalid-tuple-index]
*/
console.log(param[2])
} else {
console.log(param[1])
}
}
But in typescript it distinguishes types correctly
type A = ['a', string, string];
type B = ['b', number];
function process(param: A | B) {
if (param[0] === 'a') {
console.log(param[2]) // Works! param: A
} else {
console.log(param[1]) // param: B
}
}
Thanks!