Getting a lot of `Function "myfunction" is never u...
# javascript
a
Getting a lot of
Function "myfunction" is never used
warnings on `@JsExport`ed objects. My whole reason to export the object is that I want
myfunction
to be called from JS and not Kotlin Any way to disable that warning specifically on methods/properties of exported declarations?
t
@Suppress("unused")
?
Previously I used file suppress
a
Yeah that's what I'm doing right now -- was mostly wondering if there's a way to avoid having to manually add that suppression everywhere
t
PR? 🙂
b
Surely there must be some compiler flag for that
209 Views