Hello People, I am working on a multiplatform proj...
# javascript
k
Hello People, I am working on a multiplatform project (kotlin version 1.3.61) and I am unable to access the indexedDb. Is indexedDb natively supported? If anyone has any insight on this and can share I would be very grateful 🙏
t
Do you need all API or only some part?
k
I want to be able to perform CRUD operations on some files
a
You can use any JS API from Kotlin/JS, but there are lots of methods and objects that are not typed currently. So you can use dynamic or write typings yourself.
k
Sounds good, thanks!