I have the following .d.ts file (extract of it)
declare const Auth0: Auth0Static;
declare module "auth0-js" {
export = Auth0
}
Now in my .ts file I am using the following
import { Auth0 } from 'auth0-js';
I get the following error
auth0-js has no exported member Auth0
Whats going wrong here?
In our angular-cli project we successfully set it up by
npm install auth0-js @types/auth0-js --save
and importing paths that you need like
import { WebAuth } from 'auth0-js';