TS2305TS2305 — Module Has No Exported Member
The specified export does not exist in the referenced module.
TS2564A class property is not initialized in the constructor and has no default value.
With strictPropertyInitialization enabled, TypeScript requires that all class properties are definitely assigned in the constructor or have a default value. The property type does not include undefined.
Initialize the property in the constructor or with a default value. Add the definite assignment assertion (!) if you know it will be assigned elsewhere. Make the property optional by adding ? to include undefined.
TS2305The specified export does not exist in the referenced module.
TS2339TypeScript cannot find the specified property on the given type.
TS2366A function with a non-void return type does not have a return statement at the end.
TS18048TypeScript warns that a value could be undefined and you are using it without checking.
TS2792TypeScript cannot resolve a module subpath because the package's exports field does not allow it.
TS2459A destructured import references a member that is not exported from the module.