Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 814 Bytes

File metadata and controls

33 lines (26 loc) · 814 Bytes

API Report File for "firebase-admin.phone-number-verification"

Do not edit this file. It is a report generated by API Extractor.

import { Agent } from 'http';

// Warning: (ae-forgotten-export) The symbol "App" needs to be exported by the entry point index.d.ts
//
// @public
export function getPhoneNumberVerification(app?: App): PhoneNumberVerification;

// @public
export class PhoneNumberVerification {
    get app(): App;
    verifyToken(jwt: string): Promise<PhoneNumberVerificationToken>;
}

// @public
export interface PhoneNumberVerificationToken {
    [key: string]: any;
    aud: string[];
    exp: number;
    iat: number;
    iss: string;
    jti: string;
    nonce: string;
    phoneNumber: string;
    sub: string;
}