Encountering difficulties when compiling an Angular application that incorporates the auth0-js package. The code utilizes the method
renewAuth(options: RenewAuthOptions, callback: Auth0Callback<any>): void;
, yet it seems to be causing issues as the parameter {usePostMessage: true} is being used, which is not in line with the RenewAuthOptions
interface provided by "@types/auth0-js": "^8.3.0"
as it does not include this specific property.
Looking for guidance on how to resolve this issue.