Skip to content

Instantly share code, notes, and snippets.

@trblackw
Created March 22, 2020 20:29
Show Gist options
  • Save trblackw/19feae119b2bbaad590afe926373adcb to your computer and use it in GitHub Desktop.
Save trblackw/19feae119b2bbaad590afe926373adcb to your computer and use it in GitHub Desktop.
import FirebaseApp from "./index"
class AuthManager {
async login({ email, password }: { email: string; password: string }) {
await FirebaseApp.auth().signInWithEmailAndPassword(email, password)
}
async logout() {
return FirebaseApp.auth().signOut()
}
}
export default new AuthManager()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment