Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

FirebaseServerApp

A {@link @firebase/app#FirebaseServerApp} holds the initialization information for a collection of services running in server environments.

Do not call this constructor directly. Instead, use {@link (initializeServerApp:1) | initializeServerApp()} to create an app.

interface FirebaseServerApp extends FirebaseApp {
name: string;
readonly settings: FirebaseServerAppSettings;
}

§Extends

§Properties

§
name: string
[src]

There is no getApp() operation for FirebaseServerApp, so the name is not relevant for applications. However, it may be used internally, and is declared here so that FirebaseServerApp conforms to the FirebaseApp interface.

§

The (read-only) configuration settings for this server app. These are the original parameters given in {@link (initializeServerApp:1) | initializeServerApp()}.

@example
const app = initializeServerApp(settings);
console.log(app.settings.authIdToken === options.authIdToken);  // true