Hi, what means this error ? I just tried to run my...
# javascript
a
Hi, what means this error ? I just tried to run my application
PointerEvents is equal to this :
Copy code
@JsUnion
external enum class PointerEvents {
	@JsString("auto")
	AUTO,

	@JsString("none")
	NONE,

	@JsString("visiblePainter")
	VISIBLE_PAINTED,

	@JsString("visibleFill")
	VISIBLE_FILL,

	@JsString("visibleStroke")
	VISIBLE_STROKE,

	@JsString("visible")
	VISIBLE,

	@JsString("painted")
	PAINTED,

	@JsString("fill")
	FILL,

	@JsString("stroke")
	STROKE,

	@JsString("all")
	ALL,

	@JsString("inherit")
	INHERIT
}
I'm using Kotlin 1.5.30 with the IR compiler
Here si the entire code : https://github.com/Ayfri/PIXI-Kotlin
t
Looks like Seskar plugin update required 🙂
Looks like you have
@JsModule
annotation on file with enum
Solution - move enum to separate file
a
oh