Any way to use inline classes from Swift?
I'm thinking about using inline classes for SQLDelight's primary key. However, it looks like inline classes are not visible from Swift, and are converted to Any if it appears as a method parameter.
So my first idea is to use interface, but according to the Kotlin document, inline classes remain wrapped if it is represented as interface.
kotlin
// all API surface uses this interface
interface SomeId
inline class SomeIdImpl(val value: String): SomeId
I'm wondering if I should stick to primitives.