@@ -15,15 +15,15 @@ import { ObservableStatus, useObservable } from './useObservable';
15
15
import { from } from 'rxjs' ;
16
16
import { ReactFireOptions } from '.' ;
17
17
18
- const AppCheckSdkContext = React . createContext < AppCheck | undefined > ( undefined ) ;
19
- const AuthSdkContext = React . createContext < Auth | undefined > ( undefined ) ;
20
- const AnalyticsSdkContext = React . createContext < Analytics | undefined > ( undefined ) ;
21
- const DatabaseSdkContext = React . createContext < Database | undefined > ( undefined ) ;
22
- const FirestoreSdkContext = React . createContext < Firestore | undefined > ( undefined ) ;
23
- const FunctionsSdkContext = React . createContext < Functions | undefined > ( undefined ) ;
24
- const StorageSdkContext = React . createContext < FirebaseStorage | undefined > ( undefined ) ;
25
- const PerformanceSdkContext = React . createContext < FirebasePerformance | undefined > ( undefined ) ;
26
- const RemoteConfigSdkContext = React . createContext < RemoteConfig | undefined > ( undefined ) ;
18
+ export const AppCheckSdkContext = React . createContext < AppCheck | undefined > ( undefined ) ;
19
+ export const AuthSdkContext = React . createContext < Auth | undefined > ( undefined ) ;
20
+ export const AnalyticsSdkContext = React . createContext < Analytics | undefined > ( undefined ) ;
21
+ export const DatabaseSdkContext = React . createContext < Database | undefined > ( undefined ) ;
22
+ export const FirestoreSdkContext = React . createContext < Firestore | undefined > ( undefined ) ;
23
+ export const FunctionsSdkContext = React . createContext < Functions | undefined > ( undefined ) ;
24
+ export const StorageSdkContext = React . createContext < FirebaseStorage | undefined > ( undefined ) ;
25
+ export const PerformanceSdkContext = React . createContext < FirebasePerformance | undefined > ( undefined ) ;
26
+ export const RemoteConfigSdkContext = React . createContext < RemoteConfig | undefined > ( undefined ) ;
27
27
28
28
type FirebaseSdks = Analytics | AppCheck | Auth | Database | Firestore | FirebasePerformance | FirebaseStorage | Functions | RemoteConfig ;
29
29
0 commit comments