how do value classes interact with multiplatform c...
# multiplatform
m
how do value classes interact with multiplatform code? How do I know what is the generated JS, Native (iOS) code for them? Tried to find some documentation on it but I can't seem to find any
g
When it's not documented, it's easy to create a class and check for .js/.d.ts/... in build files to see what's really exported. For web : a Kotlin value class will generate a Typescript class with a constructor and a readonly variable.