TS2339TS2339 — Property Does Not Exist on Type
TypeScript cannot find the specified property on the given type.
TS2300The same identifier is declared more than once in the same scope.
Two declarations with the same name exist in the same scope. This can happen with duplicate type definitions, re-exported names, or global augmentation conflicts. Script-mode files share a global scope which can cause collisions.
Rename one of the duplicate declarations. Convert files to modules using export to isolate their scopes. Remove duplicate type definitions or re-exports.
TS2339TypeScript cannot find the specified property on the given type.
TS6133A variable, import, or parameter is declared but its value is never read.
TS2304TypeScript cannot find a variable, function, or type with the specified name in the current scope.
TS2416A property in a derived class is not compatible with the same property in the base class.
TS2353An object literal contains a property that does not exist on the target type.
TS2786A component's return type is not compatible with JSX element types.