UNPKG

typesaurus

Version:
8 lines 284 B
import { getApp } from "firebase/app"; import { getFirestore } from "firebase/firestore"; export const firestoreSymbol = Symbol(); export function firestore(options) { const appName = options?.client?.app || options?.app; const app = getApp(appName); return getFirestore(app); }