How to use the @angular/fire._firebaseAppFactory function in @angular/fire

To help you get started, we’ve selected a few @angular/fire examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github angular / angularfire / src / functions / functions.ts View on Github external
this.functions = zone.runOutsideAngular(() => {
      const app = _firebaseAppFactory(options, zone, nameOrConfig);
      return app.functions(region || undefined);
    });
github angular / angularfire / src / storage / storage.ts View on Github external
this.storage = zone.runOutsideAngular(() => {
      const app = _firebaseAppFactory(options, zone, nameOrConfig);
      return app.storage(storageBucket || undefined);
    });
  }
github angular / angularfire / src / auth / auth.ts View on Github external
this.auth = zone.runOutsideAngular(() => {
      const app = _firebaseAppFactory(options, zone, nameOrConfig);
      return app.auth();
    });
github angular / angularfire / src / remote-config / remote-config.ts View on Github external
      map(() => _firebaseAppFactory(options, zone, nameOrConfig)),
      map(app => app.remoteConfig()),
github angular / angularfire / src / database / database.ts View on Github external
this.database = zone.runOutsideAngular(() => {
      const app = _firebaseAppFactory(options, zone, nameOrConfig);
      return app.database(databaseURL || undefined);
    });
  }
github angular / angularfire / src / database-deprecated / database.ts View on Github external
this.database = zone.runOutsideAngular(() => {
      const app = _firebaseAppFactory(options, zone, nameOrConfig);
      return app.database(databaseURL || undefined);
    });
  }
github angular / angularfire / src / messaging / messaging.ts View on Github external
      map(() => _firebaseAppFactory(options, zone, nameOrConfig)),
      map(app => app.messaging()),
github angular / angularfire / src / analytics / analytics.ts View on Github external
      map(() => _firebaseAppFactory(options, zone, nameOrConfig)),
      map(app => app.analytics()),