István Mészáros
12/15/2023, 6:33 PMThere are clashes of declaration names that annotated with @JsExport in module 'my.project:module'.
Arent package names supposed to be included in the exported code? The docs says "Kotlin exposes its package structure to JavaScript, so unless you define your declarations in the root package, you have to use fully qualified names in JavaScript". We're on 1.9.21 and compiling to a library target with ES modules. What am I missing?turansky
12/15/2023, 6:48 PMturansky
12/15/2023, 6:50 PM@JsName
:
// pkg 1
@JsExport
@JsName("FirstData")
class Data
// pkg 2
@JsExport
@JsName("SecondData")
class Data
István Mészáros
12/15/2023, 6:55 PMandylamax
12/16/2023, 10:56 AMturansky
12/16/2023, 1:00 PMandylamax
12/16/2023, 3:30 PMupload.status.Success
user.info.Success
, init.stage.Success
and many other Result like states without renaming them to something else???turansky
12/16/2023, 3:37 PMpackage.json
turansky
12/16/2023, 3:37 PMturansky
12/16/2023, 3:38 PMturansky
12/16/2023, 3:40 PMandylamax
12/16/2023, 3:44 PMturansky
12/17/2023, 8:49 PMankur2037
01/19/2024, 8:59 AM