react-native-firebase/lib/modules/auth/providers/PhoneAuthProvider.js

20 lines
383 B
JavaScript
Raw Normal View History

const providerId = 'phone';
export default class PhoneAuthProvider {
constructor() {
throw new Error('`new PhoneAuthProvider()` is not supported on the native Firebase SDKs.');
}
static get PROVIDER_ID() {
return providerId;
}
static credential(verificationId, code) {
return {
token: verificationId,
secret: code,
providerId,
};
}
}