firebase-admin.installations package

Firebase Instance ID service.

Functions

Function Description
getInstallations(app) Gets the Installations service for the default app or a given app.getInstallations() can be called with no arguments to access the default app's Installations service or as getInstallations(app) to access the Installations service associated with a specific app.

Classes

Class Description
Installations The Installations service for the current app.

getInstallations(app)

Gets the Installations service for the default app or a given app.

getInstallations() can be called with no arguments to access the default app's Installations service or as getInstallations(app) to access the Installations service associated with a specific app.

Signature:

export declare function getInstallations(app?: App): Installations;

Parameters

Parameter Type Description
app App Optional app whose Installations service to return. If not provided, the default Installations service will be returned.

Returns:

Installations

The default Installations service if no app is provided or the Installations service associated with the provided app.

Example 1

// Get the Installations service for the default app
const defaultInstallations = getInstallations();

Example 2

// Get the Installations service for a given app
const otherInstallations = getInstallations(otherApp);