Skip to content

Files

Latest commit

 

History

History
50 lines (42 loc) · 1.21 KB

firebase-admin.installations.api.md

File metadata and controls

50 lines (42 loc) · 1.21 KB

API Report File for "firebase-admin.installations"

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

import { Agent } from 'http';

// Warning: (ae-forgotten-export) The symbol "FirebaseError" needs to be exported by the entry point index.d.ts
//
// @public
export class FirebaseInstallationsError extends FirebaseError {
}

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

// @public
export class Installations {
    get app(): App;
    deleteInstallation(fid: string): Promise<void>;
}

// @public (undocumented)
export class InstallationsClientErrorCode {
    // (undocumented)
    static API_ERROR: {
        code: string;
        message: string;
    };
    // (undocumented)
    static INVALID_ARGUMENT: {
        code: string;
        message: string;
    };
    // (undocumented)
    static INVALID_INSTALLATION_ID: {
        code: string;
        message: string;
    };
    // (undocumented)
    static INVALID_PROJECT_ID: {
        code: string;
        message: string;
    };
}