1 | import * as logger from "../logger";
|
2 | import * as analytics from "./providers/analytics";
|
3 | import * as auth from "./providers/auth";
|
4 | import * as database from "./providers/database";
|
5 | import * as firestore from "./providers/firestore";
|
6 | import * as https from "./providers/https";
|
7 | import * as pubsub from "./providers/pubsub";
|
8 | import * as remoteConfig from "./providers/remoteConfig";
|
9 | import * as storage from "./providers/storage";
|
10 | import * as tasks from "./providers/tasks";
|
11 | import * as testLab from "./providers/testLab";
|
12 | import { setApp as setEmulatedAdminApp } from "../common/app";
|
13 | export { analytics, auth, database, firestore, https, pubsub, remoteConfig, storage, tasks, testLab, logger, };
|
14 | export declare const app: {
|
15 | setEmulatedAdminApp: typeof setEmulatedAdminApp;
|
16 | };
|
17 | export * from "./cloud-functions";
|
18 | export * from "./config";
|
19 | export * from "./function-builder";
|
20 | export * from "./function-configuration";
|
21 | import * as params from "../params";
|
22 | export { params };
|
23 | export { onInit } from "../common/onInit";
|