Grantas33
05/08/2020, 10:08 PMCan't find variable: PushManager
, since safari does not support PushManager API. I've declared an external class PushManager
with required methods in my kotlin.js app. Inside the compiled .js bundle there is a variable assignment to a PushManager class (like a typealias), and that is the reason of the error on safari. Is there a way I could prevent this?turansky
05/08/2020, 10:09 PMPushManager
polyfill?Grantas33
05/16/2020, 11:16 AMexternal interface PushManager
did the trick.