Hey everyone, I wanted to use MSAL in Kotlin/JS wi...
# javascript
m
Hey everyone, I wanted to use MSAL in Kotlin/JS with Dukat but I'm getting a "External type extends non-external type" on this class:
Copy code
external open class ClientAuthError(errorCode: String, errorMessage: String = definedExternally) : AuthError {
AuthError itself is:
Copy code
typealias AuthError = Error
Error is Kotlin's stdlib Error What can I do to fix that?
Getting the same kind of error with @azure/msal-browser
t