Project: /docs/reference/js/_project.yaml Book: /docs/reference/_book.yaml page_type: reference
{% comment %} DO NOT EDIT THIS FILE! This is generated by the JS SDK team, and any local changes will be overwritten. Changes should be made in the source code at https://github.com/firebase/firebase-js-sdk {% endcomment %}
Represents the credentials returned by PhoneAuthProvider.
Signature:
export declare class PhoneAuthCredential extends AuthCredential
Extends: AuthCredential
Method | Modifiers | Description |
---|---|---|
fromJSON(json) | static |
Generates a phone credential based on a plain object or a JSON string. |
toJSON() | Returns a JSON-serializable representation of this object. |
Generates a phone credential based on a plain object or a JSON string.
Signature:
static fromJSON(json: object | string): PhoneAuthCredential | null;
Parameter | Type | Description |
---|---|---|
json | object | string |
Returns:
PhoneAuthCredential | null
Returns a JSON-serializable representation of this object.
Signature:
toJSON(): object;
Returns:
object
a JSON-serializable representation of this object.