TS2347TS2347 — Untyped Function Call May Not Accept Type Arguments
Type arguments were provided to a function that is not generic.
TS2507The expression used with new is not a constructor type.
You are using the new keyword with a value that is not a class or constructor function. The type of the expression does not have a construct signature.
Ensure the value is a class or constructor function. Check for typos in the constructor name. Verify the import is correct and the module exports a class.
TS2347Type arguments were provided to a function that is not generic.
TS2306The file referenced in an import statement is not recognized as a module.
TS7005A variable has an implicit any type because TypeScript cannot infer its type.
TS1192The module you are importing does not have a default export.
TS4055The return type of an exported function references a private or non-exported type.
TS2696A TypeScript-only feature is being used in a JavaScript file.