跳过内容

开始使用

终端窗口
bun add @capgo/capacitor-firebase-app
bunx cap sync
import { FirebaseApp } from '@capgo/capacitor-firebase-app';

获取该应用的名称。

import { FirebaseApp } from '@capgo/capacitor-firebase-app';
await FirebaseApp.getName();

获取此应用的配置选项。

import { FirebaseApp } from '@capgo/capacitor-firebase-app';
await FirebaseApp.getOptions();

类型参考

类型参考

GetNameResult

获取名称结果
export interface GetNameResult {
/**
* The unique name of this app.
*
* @since 0.1.0
*/
name: string;
}

GetOptionsResult

获取选项结果
export interface GetOptionsResult {
/**
* API key used for authenticating requests from your app.
*
* @since 0.1.0
*/
apiKey: string;
/**
* Google App ID used to uniquely identify an instance of an app.
*
* @since 0.1.0
*/
applicationId: string;
/**
* The database root URL.
*
* @since 0.1.0
*/
databaseUrl: string;
/**
* The Project Number.
*
* @since 0.1.0
*/
gcmSenderId: string;
/**
* The Google Cloud project ID.
*
* @since 0.1.0
*/
projectId: string;
/**
* The Google Cloud Storage bucket name.
*
* @since 0.1.0
*/
storageBucket: string;
}

GetPluginVersionResult

获取插件版本结果
export interface GetPluginVersionResult {
/**
* The semantic version of this plugin.
*
* @since 8.0.1
*/
version: string;
}

真实来源

真实来源

本页面由插件生成 src/definitions.ts当上游的公共API发生变化时,请重新同步。