| 3 | import { computed, ref as deepRef } from 'vue' |
| 4 | |
| 5 | export interface UseFirebaseAuthOptions { |
| 6 | isAuthenticated: ComputedRef<boolean> |
| 7 | user: Ref<User | null> |
| 8 | } |
| 9 | |
| 10 | /** |
| 11 | * Reactive Firebase Auth binding |
nothing calls this directly
no outgoing calls
no test coverage detected