Skip to content

BazuMax/capacitor-firebase-auth

Repository files navigation

capacitor-firebase-auth

npm init @capacitor/plugin

Install

npm install capacitor-firebase-auth
npx cap sync

API

getClaims()

getClaims() => Promise<ClaimsResult>

Returns the custom claims (set by developer via Admin SDK).

Returns: Promise<ClaimsResult>

Since: 3.0.0


Interfaces

ClaimsResult

Prop Type
claims Record<string, boolean>

Type Aliases

Record

Construct a type with a set of properties K of type T

{ [P in K]: T; }