TS2564TS2564 — Property Has No Initializer
A class property is not initialized in the constructor and has no default value.
TS2555The function call has fewer arguments than the minimum required.
The function has required parameters that were not provided. Some parameters may be optional, but a minimum number must be supplied. Rest parameters also have minimum argument requirements.
Provide all required arguments. Check the function signature to determine which parameters are required versus optional. Add default values to parameters if they should have fallbacks.
TS2564A class property is not initialized in the constructor and has no default value.
TS7030A function with a return type does not return a value in all possible code paths.
TS2363The right operand of an arithmetic expression must be a number or bigint type.
TS2353An object literal contains a property that does not exist on the target type.
TS2488The type being iterated does not have a Symbol.iterator method.
TS2739An object type is missing multiple required properties from the target type.