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

28 lines
523 B
JavaScript
Raw Normal View History

2017-11-17 14:22:46 +00:00
/**
* @flow
* EmailAuthProvider representation wrapper
*/
2018-01-24 09:46:39 +00:00
import type { AuthCredential } from '../types';
2017-11-23 17:29:40 +00:00
const providerId = 'google.com';
export default class GoogleAuthProvider {
constructor() {
2018-01-25 18:25:39 +00:00
throw new Error(
'`new GoogleAuthProvider()` is not supported on the native Firebase SDKs.'
);
}
2017-11-17 14:22:46 +00:00
static get PROVIDER_ID(): string {
return providerId;
}
2017-11-17 14:22:46 +00:00
static credential(token: string, secret: string): AuthCredential {
return {
token,
secret,
providerId,
};
}
}