Functions interface

A Functions instance.

Signature:

export interface Functions 

Properties

Property Type Description
app FirebaseApp The FirebaseApp this Functions instance is associated with.
customDomain string | null A custom domain hosting the callable Cloud Functions. ex: https://mydomain.com
region string The region the callable Cloud Functions are located in. Default is us-central-1.

Functions.app

The FirebaseApp this Functions instance is associated with.

Signature:

app: FirebaseApp;

Functions.customDomain

A custom domain hosting the callable Cloud Functions. ex: https://mydomain.com

Signature:

customDomain: string | null;

Functions.region

The region the callable Cloud Functions are located in. Default is us-central-1.

Signature:

region: string;