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.
TS2448
typescript 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.