1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 |
|
13 |
|
14 |
|
15 |
|
16 |
|
17 | import { appCheck } from './app-check/app-check-namespace';
|
18 | import { auth } from './auth/auth-namespace';
|
19 | import { database } from './database/database-namespace';
|
20 | import { firestore } from './firestore/firestore-namespace';
|
21 | import { instanceId } from './instance-id/instance-id-namespace';
|
22 | import { installations } from './installations/installations-namespace';
|
23 | import { machineLearning } from './machine-learning/machine-learning-namespace';
|
24 | import { messaging } from './messaging/messaging-namespace';
|
25 | import { projectManagement } from './project-management/project-management-namespace';
|
26 | import { remoteConfig } from './remote-config/remote-config-namespace';
|
27 | import { securityRules } from './security-rules/security-rules-namespace';
|
28 | import { storage } from './storage/storage-namespace';
|
29 | import { App as AppCore, AppOptions } from './app/index';
|
30 | export { AppOptions, FirebaseError, FirebaseArrayIndexError } from './app/index';
|
31 | export declare namespace app {
|
32 | |
33 |
|
34 |
|
35 |
|
36 |
|
37 |
|
38 |
|
39 | interface App extends AppCore {
|
40 | appCheck(): appCheck.AppCheck;
|
41 | auth(): auth.Auth;
|
42 | database(url?: string): database.Database;
|
43 | firestore(): firestore.Firestore;
|
44 | installations(): installations.Installations;
|
45 | |
46 |
|
47 |
|
48 | instanceId(): instanceId.InstanceId;
|
49 | machineLearning(): machineLearning.MachineLearning;
|
50 | messaging(): messaging.Messaging;
|
51 | projectManagement(): projectManagement.ProjectManagement;
|
52 | remoteConfig(): remoteConfig.RemoteConfig;
|
53 | securityRules(): securityRules.SecurityRules;
|
54 | storage(): storage.Storage;
|
55 | |
56 |
|
57 |
|
58 |
|
59 |
|
60 |
|
61 |
|
62 |
|
63 |
|
64 |
|
65 |
|
66 |
|
67 |
|
68 |
|
69 |
|
70 |
|
71 |
|
72 | delete(): Promise<void>;
|
73 | }
|
74 | }
|
75 | export * from './credential/index';
|
76 | export { appCheck } from './app-check/app-check-namespace';
|
77 | export { auth } from './auth/auth-namespace';
|
78 | export { database } from './database/database-namespace';
|
79 | export { firestore } from './firestore/firestore-namespace';
|
80 | export { instanceId } from './instance-id/instance-id-namespace';
|
81 | export { installations } from './installations/installations-namespace';
|
82 | export { machineLearning } from './machine-learning/machine-learning-namespace';
|
83 | export { messaging } from './messaging/messaging-namespace';
|
84 | export { projectManagement } from './project-management/project-management-namespace';
|
85 | export { remoteConfig } from './remote-config/remote-config-namespace';
|
86 | export { securityRules } from './security-rules/security-rules-namespace';
|
87 | export { storage } from './storage/storage-namespace';
|
88 | export declare const SDK_VERSION: string;
|
89 | export declare const apps: (app.App | null)[];
|
90 | export declare function app(name?: string): app.App;
|
91 | export declare function initializeApp(options?: AppOptions, name?: string): app.App;
|