UNPKG

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