TS2345TS2345 — Argument Type Not Assignable
The argument passed to a function is not compatible with the expected parameter type.
TS4082The default export requires a type annotation when generating declaration files.
When declaration: true is set in tsconfig, default exports need explicit types for TypeScript to generate .d.ts files. The inferred type cannot be serialized to a declaration file.
Add an explicit type annotation to the default export. Use a named export instead of default export. Ensure all types used in the return are importable.
TS2345The argument passed to a function is not compatible with the expected parameter type.
TS2588You are trying to reassign a variable declared with const.
TS2307TypeScript cannot find the module specified in an import or require statement.
TS18047TypeScript warns that a value could be null and you are using it without checking.
TS2347Type arguments were provided to a function that is not generic.
TS2769None of the function overload signatures match the provided arguments.