Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 714 Bytes

File metadata and controls

32 lines (25 loc) · 714 Bytes

API Report File for "firebase-admin.fpnv"

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

import { Agent } from 'http';

// @public
export class Fpnv {
    // Warning: (ae-forgotten-export) The symbol "App" needs to be exported by the entry point index.d.ts
    get app(): App;
    verifyToken(fpnvJwt: string): Promise<FpnvToken>;
}

// @public
export interface FpnvToken {
    [key: string]: any;
    aud: string[];
    exp: number;
    getPhoneNumber(): string;
    iat: number;
    iss: string;
    jti: string;
    nonce: string;
    sub: string;
}

// @public
export function getFirebasePnv(app?: App): Fpnv;