errors.fyi community error code reference
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.

References

โ† all namespaces for TS2448