TS2322TS2322 — Type Not Assignable
A value of one type cannot be assigned to a variable or property of a different, incompatible type.
TS2395Merged declarations for the same name have inconsistent export modifiers.
When multiple declarations merge (like a namespace and a function with the same name), they must all be exported or all be non-exported. Having some exported and some not creates an inconsistency.
Make all merged declarations consistently exported or non-exported. Add or remove the export keyword to match across all declarations.
TS2322A value of one type cannot be assigned to a variable or property of a different, incompatible type.
TS2503TypeScript cannot find a namespace with the specified name.
TS2705An async function requires a higher ECMAScript target to compile.
TS7006A function parameter has no type annotation and TypeScript cannot infer its type.
TS2304TypeScript cannot find a variable, function, or type with the specified name in the current scope.
TS6133A variable, import, or parameter is declared but its value is never read.