TS2448
typescript Variable Used Before Assignment
A variable is referenced before it is assigned a value in the current code path. Initialise the variable before use, or use definite assignment assertion (`!`) if you are certain it is set.
A variable is referenced before it is assigned a value in the current code path. Initialise the variable before use, or use definite assignment assertion (`!`) if you are certain it is set.