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;
};
}