TS2503TS2503 — Cannot Find Namespace
TypeScript cannot find a namespace with the specified name.
TS1259A CommonJS module requires esModuleInterop or allowSyntheticDefaultImports to be imported with default import syntax.
The module does not have a default export in its type definition, but you are using default import syntax. TypeScript needs esModuleInterop to automatically create a synthetic default export.
Enable esModuleInterop in tsconfig.json. Alternatively, use import * as name from 'module' syntax. Enable allowSyntheticDefaultImports if you only need type checking without runtime interop.
TS2503TypeScript cannot find a namespace with the specified name.
TS2339TypeScript cannot find the specified property on the given type.
TS2554The number of arguments passed to a function does not match the number of required parameters.
TS1002A string literal is missing its closing quote.
TS2430An interface declares that it extends another interface but has incompatible properties.
TS4082The default export requires a type annotation when generating declaration files.