I have a kotlinx.serialization `JsonObject` coming...
# serialization
j
I have a kotlinx.serialization
JsonObject
coming into an iOS framework (from my Kotlin Multiplatform library) and I need to convert it from
[String: JsonElement]
to
[String: Any]
in order to use it properly. The object has nested objects inside it. What is the recommended way of converting this into a Swift-friendly
[String: Any]
?
👀 1