import { FirebaseAuthentication } from '@awesome-cordova-plugins/firebase-authentication/ngx';
constructor(private firebaseAuthentication: FirebaseAuthentication) { }
...
this.firebaseAuthentication.createUserWithEmailAndPassword('test@gmail.com', '123')
.then((res: any) => console.log(res))
.catch((error: any) => console.error(error));