TS2307TS2307 — Cannot Find Module
TypeScript 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.
A public function returns a type that is not exported, making it impossible for consumers to reference the return type. Declaration file generation requires all public API types to be accessible.
Export the private type so consumers can reference it. Add an explicit return type using only exported types. Restructure the types to avoid exposing private types in public APIs.
TS2307TypeScript cannot find the module specified in an import or require statement.
TS1479The relative import path requires a file extension under Node.js ESM resolution.
TS2610A derived class defines a property where the base class has an accessor.
TS2420A class declares that it implements an interface but does not provide all required members.
TS2461A destructuring pattern expects an array type but the value is not an array.
TS2739An object type is missing multiple required properties from the target type.