2
0
mirror of synced 2025-01-27 22:55:04 +00:00

26 lines
506 B
JavaScript
Raw Normal View History

2017-11-17 14:22:46 +00:00
/**
* @flow
* GithubAuthProvider representation wrapper
*/
2017-11-23 17:29:40 +00:00
import type { AuthCredential } from '../../../types';
const providerId = 'github.com';
export default class GithubAuthProvider {
constructor() {
throw new Error('`new GithubAuthProvider()` 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): AuthCredential {
return {
token,
secret: '',
providerId,
};
}
}