1 | /**
|
2 | * Cloud functions to handle events from Firebase Alerts.
|
3 | * Subpackages give stronger typing to specific services which
|
4 | * notify users via Firebase Alerts.
|
5 | * @packageDocumentation
|
6 | */
|
7 | import * as appDistribution from "./appDistribution";
|
8 | import * as billing from "./billing";
|
9 | import * as crashlytics from "./crashlytics";
|
10 | import * as performance from "./performance";
|
11 | export { appDistribution, billing, crashlytics, performance };
|
12 | export * from "./alerts";
|