This the keyserver counterpart of D9774 (web) and D9706 / D9692 (lib).
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 D9857