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 initializeServerApp().
FirebaseServerApp.name
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.
Signature:
name:string;
FirebaseServerApp.settings
The (read-only) configuration settings for this server app. These are the original parameters given in initializeServerApp().
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-03-28 UTC."],[],[],null,["A [FirebaseServerApp](./app.firebaseserverapp.md#firebaseserverapp_interface) holds the initialization information for a collection of services running in server environments.\n\nDo not call this constructor directly. Instead, use [initializeServerApp()](./app.md#initializeserverapp_30ab697) to create an app.\n\n**Signature:** \n\n export interface FirebaseServerApp extends FirebaseApp \n\n**Extends:** [FirebaseApp](./app.firebaseapp.md#firebaseapp_interface)\n\nProperties\n\nFirebaseServerApp.name\n\nThere 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.\n\n**Signature:** \n\n name: string;\n\nFirebaseServerApp.settings\n\nThe (read-only) configuration settings for this server app. These are the original parameters given in [initializeServerApp()](./app.md#initializeserverapp_30ab697).\n\n**Signature:** \n\n readonly settings: FirebaseServerAppSettings;\n\nExample \n\n const app = initializeServerApp(settings);\n console.log(app.settings.authIdToken === options.authIdToken); // true"]]