UNPKG

avada-feature-request

Version:

Feature Request component library for React applications

19 lines (18 loc) 505 B
import { FirebaseApp } from "firebase/app"; import { Firestore } from "firebase/firestore"; export declare const initializeFirebase: (config?: { apiKey: string; authDomain: string; databaseURL: string; projectId: string; storageBucket: string; messagingSenderId: string; appId: string; measurementId: string; }) => { app: FirebaseApp; db: Firestore; }; declare const app: FirebaseApp, db: Firestore; export { app, db }; export declare const getDb: () => Firestore;