This the web counterpart of both D9706 and D9692 (I combined them for web).
There are two main categories of changes here, and both pertain to variables getting mutated:
- let declarations where the variable is reassigned later
- const declarations of mutable collections that are mutated later
In both of these cases, Flow now wants us to annotate the declaration to cover both the type of the data that's initialized, and also the mutations that later occur.
Depends on D9773
This isn't used anywhere