UNPKG

2.03 kBTypeScriptView Raw
1/**
2 * @license
3 * Copyright 2019 Google LLC
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17import { ErrorFactory } from '@firebase/util';
18export declare const enum AnalyticsError {
19 ALREADY_EXISTS = "already-exists",
20 ALREADY_INITIALIZED = "already-initialized",
21 ALREADY_INITIALIZED_SETTINGS = "already-initialized-settings",
22 INTEROP_COMPONENT_REG_FAILED = "interop-component-reg-failed",
23 INVALID_ANALYTICS_CONTEXT = "invalid-analytics-context",
24 INDEXEDDB_UNAVAILABLE = "indexeddb-unavailable",
25 FETCH_THROTTLE = "fetch-throttle",
26 CONFIG_FETCH_FAILED = "config-fetch-failed",
27 NO_API_KEY = "no-api-key",
28 NO_APP_ID = "no-app-id",
29 NO_CLIENT_ID = "no-client-id",
30 INVALID_GTAG_RESOURCE = "invalid-gtag-resource"
31}
32interface ErrorParams {
33 [AnalyticsError.ALREADY_EXISTS]: {
34 id: string;
35 };
36 [AnalyticsError.INTEROP_COMPONENT_REG_FAILED]: {
37 reason: Error;
38 };
39 [AnalyticsError.FETCH_THROTTLE]: {
40 throttleEndTimeMillis: number;
41 };
42 [AnalyticsError.CONFIG_FETCH_FAILED]: {
43 httpStatus: number;
44 responseMessage: string;
45 };
46 [AnalyticsError.INVALID_ANALYTICS_CONTEXT]: {
47 errorInfo: string;
48 };
49 [AnalyticsError.INDEXEDDB_UNAVAILABLE]: {
50 errorInfo: string;
51 };
52 [AnalyticsError.INVALID_GTAG_RESOURCE]: {
53 gtagURL: string;
54 };
55}
56export declare const ERROR_FACTORY: ErrorFactory<AnalyticsError, ErrorParams>;
57export {};