I can easily use this to create a user:
this.af.auth.createUser({email: email, password: password});
but how do I edit the users details once they're created? (ie: Change the password or the e-mail address?). I would think something like this:
this.af.auth.updateUser({email: email, password: password});
But there's no updateUser method?