TS4082TS4082 — Default Export Needs Type Annotation for Declaration Emit
The default export requires a type annotation when generating declaration files.
TS2742The inferred type of a declaration cannot be named without a dependency that is not available.
The return type or variable type depends on a type from another module that is not directly accessible. This commonly happens in declaration file generation when types come from node_modules.
Add an explicit type annotation. Install the missing @types package. Export and import the needed type explicitly.
TS4082The default export requires a type annotation when generating declaration files.
TS6133A variable, import, or parameter is declared but its value is never read.
TS18048TypeScript warns that a value could be undefined and you are using it without checking.
TS2571You are trying to use a value of type unknown without first narrowing its type.
TS2322A value of one type cannot be assigned to a variable or property of a different, incompatible type.
TS2307TypeScript cannot find the module specified in an import or require statement.