File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
firebase-firestore/src/androidMain/kotlin/dev/teamhub/firebase/firestore Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -297,6 +297,7 @@ actual open class Query(open val android: com.google.firebase.firestore.Query) {
297
297
}
298
298
)
299
299
}
300
+
300
301
actual class CollectionReference (override val android : com.google.firebase.firestore.CollectionReference ) : Query(android) {
301
302
302
303
actual val path: String
@@ -328,11 +329,11 @@ actual class DocumentSnapshot(val android: com.google.firebase.firestore.Documen
328
329
329
330
actual inline fun <reified T : Any > data () = decode<T >(value = android.data)
330
331
331
- actual inline fun <T > data (strategy : DeserializationStrategy <T >) = decode(strategy, android.data)
332
+ actual fun <T > data (strategy : DeserializationStrategy <T >) = decode(strategy, android.data)
332
333
333
334
actual inline fun <reified T > get (field : String ) = decode<T >(value = android.get(field))
334
335
335
- actual inline fun <T > get (field : String , strategy : DeserializationStrategy <T >) =
336
+ actual fun <T > get (field : String , strategy : DeserializationStrategy <T >) =
336
337
decode(strategy, android.get(field))
337
338
338
339
actual fun contains (field : String ) = android.contains(field)
You can’t perform that action at this time.
0 commit comments