1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 | import * as logger from "../logger";
|
9 | import * as alerts from "./providers/alerts";
|
10 | import * as database from "./providers/database";
|
11 | import * as eventarc from "./providers/eventarc";
|
12 | import * as https from "./providers/https";
|
13 | import * as identity from "./providers/identity";
|
14 | import * as pubsub from "./providers/pubsub";
|
15 | import * as scheduler from "./providers/scheduler";
|
16 | import * as storage from "./providers/storage";
|
17 | import * as tasks from "./providers/tasks";
|
18 | import * as remoteConfig from "./providers/remoteConfig";
|
19 | import * as testLab from "./providers/testLab";
|
20 | import * as firestore from "./providers/firestore";
|
21 | export { alerts, database, storage, https, identity, pubsub, logger, tasks, eventarc, scheduler, remoteConfig, testLab, firestore, };
|
22 | export { setGlobalOptions, GlobalOptions, SupportedRegion, MemoryOption, VpcEgressSetting, IngressSetting, EventHandlerOptions, } from "./options";
|
23 | export { CloudFunction, CloudEvent, ParamsOf, onInit } from "./core";
|
24 | export { Change } from "../common/change";
|
25 | import * as params from "../params";
|
26 | export { params };
|
27 | export { config } from "../v1/config";
|
28 | import { setApp as setEmulatedAdminApp } from "../common/app";
|
29 | export declare const app: {
|
30 | setEmulatedAdminApp: typeof setEmulatedAdminApp;
|
31 | };
|