In the previous versions of Firebase, I used to import the Typescript definition of the User
like this:
import {User} from 'firebase';
However, with the introduction of v8, this import no longer works and gives the following error message:
Module '"../../../../node_modules/firebase"' has no exported member 'User'. Did you mean to use 'import User from "../../../../node_modules/firebase"' instead?
The release notes mention that CJS bundles have been dropped, but do not provide information on how to resolve this import issue.
I would appreciate any help or guidance on this matter. Thank you in advance.