We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93b9dda commit ef5e5d9Copy full SHA for ef5e5d9
firebase-auth/src/jvmMain/kotlin/dev/gitlive/firebase/auth/auth.kt
@@ -17,10 +17,10 @@ import kotlinx.coroutines.flow.Flow
17
import kotlinx.coroutines.flow.callbackFlow
18
import kotlinx.coroutines.tasks.await
19
20
-public actual val Firebase.auth
+public actual val Firebase.auth: FirebaseAuth
21
get() = FirebaseAuth(com.google.firebase.auth.FirebaseAuth.getInstance())
22
23
-public actual fun Firebase.auth(app: FirebaseApp) =
+public actual fun Firebase.auth(app: FirebaseApp): FirebaseAuth =
24
FirebaseAuth(com.google.firebase.auth.FirebaseAuth.getInstance(app.android))
25
26
public actual class FirebaseAuth internal constructor(public val android: com.google.firebase.auth.FirebaseAuth) {
0 commit comments