TS2339TS2339 — Property Does Not Exist on Type
TypeScript cannot find the specified property on the given type.
TS2565A class property with a definite assignment assertion (!) is never read.
You used the definite assignment assertion to tell TypeScript the property will be assigned, but the property is never actually read anywhere in the code.
Remove the property if it is not needed. Use the property somewhere in the class. Remove the definite assignment assertion if the property is not being used.
class Foo {
bar: string; // not assigned
}TS2339TypeScript cannot find the specified property on the given type.
TS2497A CommonJS module is being imported with named import syntax but only has a default export.
TS1149An import declaration conflicts with the ambient context of the file.
TS2588You are trying to reassign a variable declared with const.
TS2769None of the function overload signatures match the provided arguments.
TS2365An arithmetic or comparison operator is used with incompatible types.