TS4082TS4082 — Default Export Needs Type Annotation for Declaration Emit
The default export requires a type annotation when generating declaration files.
TS2554The number of arguments passed to a function does not match the number of required parameters.
You are calling a function with too many or too few arguments. Required parameters must always be provided. Rest parameters and overloaded functions can make the expected count unclear.
Check the function signature for the correct number of parameters. Add missing arguments or remove extra ones. Mark parameters as optional with ? if they should not always be required.
function add(a: number, b: number) { return a + b; }
add(1);TS4082The default export requires a type annotation when generating declaration files.
TS2307TypeScript cannot find the module specified in an import or require statement.
TS4055The return type of an exported function references a private or non-exported type.
TS6133A variable, import, or parameter is declared but its value is never read.
TS2820A JSX element type does not have any matching call or construct signatures.
TS2306The file referenced in an import statement is not recognized as a module.