UNPKG

capacitor-firebase-kit

Version:

Provider-less Firebase Kit - Universal Firebase services integration for React, React Native, and Capacitor apps

16 lines (15 loc) 671 B
import { WebPlugin } from '@capacitor/core'; import { type FirebaseKitPlugin, type AppCheckService, type AdMobService, type CrashlyticsService, type PerformanceService, type AnalyticsService, type RemoteConfigService } from './definitions'; /** * Web implementation of Firebase Kit Plugin * Provides partial implementation for web platform where applicable */ export declare class FirebaseKitWeb extends WebPlugin implements FirebaseKitPlugin { appCheck: AppCheckService; adMob: AdMobService; crashlytics: CrashlyticsService; performance: PerformanceService; analytics: AnalyticsService; remoteConfig: RemoteConfigService; constructor(); }