voize-gmbh / reakt-native-toolkit

Combine React Native with Kotlin Multiplatform (KMP)
Apache License 2.0
124 stars 4 forks source link

Ambiguous typescript namespace references are generated #43

Open Legion2 opened 9 months ago

Legion2 commented 9 months ago
package bar.foo

import foo.bar.Test2

data class Test1(
  val test: Test2
)

package foo.bar

data class Test2(
  val test: String
)

Typescript namespace reference is not using disambiguous references.