UNPKG

react-native-firebase-compiled

Version:

A well tested, feature rich Firebase implementation for React Native, supporting iOS & Android. Individual module support for Admob, Analytics, Auth, Crash Reporting, Cloud Firestore, Database, Dynamic Links, Functions, Messaging (FCM), Remote Config, Sto

33 lines (26 loc) 553 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; /** * * TwitterAuthProvider representation wrapper */ const providerId = 'twitter.com'; class TwitterAuthProvider { constructor() { throw new Error('`new TwitterAuthProvider()` is not supported on the native Firebase SDKs.'); } static get PROVIDER_ID() { return providerId; } static credential(token, secret) { return { token, secret, providerId }; } } exports.default = TwitterAuthProvider;