i'm trying to convert firebase ts declarations wit...
# javascript
d
i'm trying to convert firebase ts declarations with ts2kt lib, and got tons of
@nativeGetter
in code which is deprecated and message is: "Use inline extension function with body using dynamic" which i don't fully understand. the code looks like:
Copy code
@nativeGetter
    operator fun get(name: String): FirebaseServiceFactory?
    @nativeSetter
    operator fun set(name: String, value: FirebaseServiceFactory)
g
Maybe something like that:
Copy code
external inline operator fun MyClass.get(name: String): FirebaseServiceFactory?
Not sure but deprecation warning probably about this case
a
I am pretty you should ignore those warnings for now. cc @bashor
b
@deviant yes, just ignore it now.