13 lines
464 B
TypeScript
13 lines
464 B
TypeScript
/**
|
|
* Cloud functions to handle events from Firebase Alerts.
|
|
* Subpackages give stronger typing to specific services which
|
|
* notify users via Firebase Alerts.
|
|
* @packageDocumentation
|
|
*/
|
|
import * as appDistribution from "./appDistribution";
|
|
import * as billing from "./billing";
|
|
import * as crashlytics from "./crashlytics";
|
|
import * as performance from "./performance";
|
|
export { appDistribution, billing, crashlytics, performance };
|
|
export * from "./alerts";
|