errors.fyi community error code reference
TS2564
typescript

Property Not Definitely Assigned

A class property is declared without a definite assignment and is not initialised in the constructor. Add an initialiser, mark it optional (`?`), or use the definite assignment assertion (`!`).

References

โ† all namespaces for TS2564