Nhogs/nestjs-firebase

View on GitHub
lib/interface/firebase-emulator-config.ts

Summary

Maintainability
A
0 mins
Test Coverage
export interface FirebaseEmulatorConfig {
  authUrl?: string;
  firestore?: {
    host: string;
    port: number;
  };
  storage?: {
    host: string;
    port: number;
  };
}