[[["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-04-16 UTC."],[],[],null,["# App interface\n\nA Firebase app holds the initialization information for a collection of services.\n\n**Signature:** \n\n export interface App \n\nProperties\n----------\n\n| Property | Type | Description |\n|---------------------------------------------------|-----------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| [name](./firebase-admin.app.app.md#appname) | string | The (read-only) name for this app.The default app's name is `\"[DEFAULT]\"`. |\n| [options](./firebase-admin.app.app.md#appoptions) | [AppOptions](./firebase-admin.app.appoptions.md#appoptions_interface) | The (read-only) configuration options for this app. These are the original parameters given in [initializeApp()](./firebase-admin.app.md#initializeapp_2848fbd). |\n\nApp.name\n--------\n\nThe (read-only) name for this app.\n\nThe default app's name is `\"[DEFAULT]\"`.\n\n**Signature:** \n\n name: string;\n\n### Example 1\n\n // The default app's name is \"[DEFAULT]\"\n initializeApp(defaultAppConfig);\n console.log(admin.app().name); // \"[DEFAULT]\"\n\n### Example 2\n\n // A named app's name is what you provide to initializeApp()\n const otherApp = initializeApp(otherAppConfig, \"other\");\n console.log(otherApp.name); // \"other\"\n\nApp.options\n-----------\n\nThe (read-only) configuration options for this app. These are the original parameters given in [initializeApp()](./firebase-admin.app.md#initializeapp_2848fbd).\n\n**Signature:** \n\n options: AppOptions;\n\n### Example\n\n const app = initializeApp(config);\n console.log(app.options.credential === config.credential); // true\n console.log(app.options.databaseURL === config.databaseURL); // true"]]