@firebase/remote-config 0.5.0-canary.d8aabaf9e → 0.5.0-canary.dcfb3da2e

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. package/dist/esm/index.esm2017.js +96 -45
  2. package/dist/esm/index.esm2017.js.map +1 -1
  3. package/dist/esm/src/api.d.ts +4 -2
  4. package/dist/esm/src/client/caching_client.d.ts +2 -1
  5. package/dist/esm/src/client/remote_config_fetch_client.d.ts +1 -38
  6. package/dist/esm/src/client/rest_client.d.ts +2 -1
  7. package/dist/esm/src/client/retrying_client.d.ts +2 -1
  8. package/dist/esm/src/errors.d.ts +1 -0
  9. package/dist/esm/src/public_types.d.ts +52 -0
  10. package/dist/esm/src/remote_config.d.ts +1 -1
  11. package/dist/esm/src/storage/storage.d.ts +25 -12
  12. package/dist/esm/src/storage/storage_cache.d.ts +1 -1
  13. package/dist/index.cjs.js +95 -44
  14. package/dist/index.cjs.js.map +1 -1
  15. package/dist/remote-config-public.d.ts +58 -1
  16. package/dist/remote-config.d.ts +58 -1
  17. package/dist/src/api.d.ts +4 -2
  18. package/dist/src/client/caching_client.d.ts +2 -1
  19. package/dist/src/client/remote_config_fetch_client.d.ts +1 -38
  20. package/dist/src/client/rest_client.d.ts +2 -1
  21. package/dist/src/client/retrying_client.d.ts +2 -1
  22. package/dist/src/errors.d.ts +1 -0
  23. package/dist/src/public_types.d.ts +52 -0
  24. package/dist/src/remote_config.d.ts +1 -1
  25. package/dist/src/storage/storage.d.ts +25 -12
  26. package/dist/src/storage/storage_cache.d.ts +1 -1
  27. package/package.json +9 -9
  28. package/dist/esm/test/client/caching_client.test.d.ts +0 -17
  29. package/dist/esm/test/client/rest_client.test.d.ts +0 -17
  30. package/dist/esm/test/client/retrying_client.test.d.ts +0 -17
  31. package/dist/esm/test/errors.test.d.ts +0 -17
  32. package/dist/esm/test/language.test.d.ts +0 -17
  33. package/dist/esm/test/remote_config.test.d.ts +0 -17
  34. package/dist/esm/test/storage/storage.test.d.ts +0 -17
  35. package/dist/esm/test/storage/storage_cache.test.d.ts +0 -17
  36. package/dist/esm/test/value.test.d.ts +0 -17
  37. package/dist/test/client/caching_client.test.d.ts +0 -17
  38. package/dist/test/client/rest_client.test.d.ts +0 -17
  39. package/dist/test/client/retrying_client.test.d.ts +0 -17
  40. package/dist/test/errors.test.d.ts +0 -17
  41. package/dist/test/language.test.d.ts +0 -17
  42. package/dist/test/remote_config.test.d.ts +0 -17
  43. package/dist/test/storage/storage.test.d.ts +0 -17
  44. package/dist/test/storage/storage_cache.test.d.ts +0 -17
  45. package/dist/test/value.test.d.ts +0 -17
@@ -63,6 +63,38 @@ export declare function fetchAndActivate(remoteConfig: RemoteConfig): Promise<bo
63
63
  */
64
64
  export declare function fetchConfig(remoteConfig: RemoteConfig): Promise<void>;
65
65
 
66
+ /**
67
+ * Defines a successful response (200 or 304).
68
+ *
69
+ * <p>Modeled after the native `Response` interface, but simplified for Remote Config's
70
+ * use case.
71
+ */
72
+ export declare interface FetchResponse {
73
+ /**
74
+ * The HTTP status, which is useful for differentiating success responses with data from
75
+ * those without.
76
+ *
77
+ * <p>The Remote Config client is modeled after the native `Fetch` interface, so
78
+ * HTTP status is first-class.
79
+ *
80
+ * <p>Disambiguation: the fetch response returns a legacy "state" value that is redundant with the
81
+ * HTTP status code. The former is normalized into the latter.
82
+ */
83
+ status: number;
84
+ /**
85
+ * Defines the ETag response header value.
86
+ *
87
+ * <p>Only defined for 200 and 304 responses.
88
+ */
89
+ eTag?: string;
90
+ /**
91
+ * Defines the map of parameters returned as "entries" in the fetch response body.
92
+ *
93
+ * <p>Only defined for 200 responses.
94
+ */
95
+ config?: FirebaseRemoteConfigObject;
96
+ }
97
+
66
98
  /**
67
99
  * Summarizes the outcome of the last attempt to fetch config from the Firebase Remote Config server.
68
100
  *
@@ -78,6 +110,13 @@ export declare function fetchConfig(remoteConfig: RemoteConfig): Promise<void>;
78
110
  */
79
111
  export declare type FetchStatus = 'no-fetch-yet' | 'success' | 'failure' | 'throttle';
80
112
 
113
+ /**
114
+ * Defines a self-descriptive reference for config key-value pairs.
115
+ */
116
+ export declare interface FirebaseRemoteConfigObject {
117
+ [key: string]: string;
118
+ }
119
+
81
120
  /**
82
121
  * Gets all config.
83
122
  *
@@ -118,11 +157,13 @@ export declare function getNumber(remoteConfig: RemoteConfig, key: string): numb
118
157
  /**
119
158
  *
120
159
  * @param app - The {@link @firebase/app#FirebaseApp} instance.
160
+ * @param options - Optional. The {@link RemoteConfigOptions} with which to instantiate the
161
+ * Remote Config instance.
121
162
  * @returns A {@link RemoteConfig} instance.
122
163
  *
123
164
  * @public
124
165
  */
125
- export declare function getRemoteConfig(app?: FirebaseApp): RemoteConfig;
166
+ export declare function getRemoteConfig(app?: FirebaseApp, options?: RemoteConfigOptions): RemoteConfig;
126
167
 
127
168
  /**
128
169
  * Gets the value for the given key as a string.
@@ -200,6 +241,22 @@ export declare interface RemoteConfig {
200
241
  lastFetchStatus: FetchStatus;
201
242
  }
202
243
 
244
+ /**
245
+ * Options for Remote Config initialization.
246
+ *
247
+ * @public
248
+ */
249
+ export declare interface RemoteConfigOptions {
250
+ /**
251
+ * The ID of the template to use. If not provided, defaults to "firebase".
252
+ */
253
+ templateId?: string;
254
+ /**
255
+ * Hydrates the state with an initial fetch response.
256
+ */
257
+ initialFetchResponse?: FetchResponse;
258
+ }
259
+
203
260
  /**
204
261
  * Defines configuration options for the Remote Config SDK.
205
262
  *
package/dist/src/api.d.ts CHANGED
@@ -15,15 +15,17 @@
15
15
  * limitations under the License.
16
16
  */
17
17
  import { FirebaseApp } from '@firebase/app';
18
- import { CustomSignals, LogLevel as RemoteConfigLogLevel, RemoteConfig, Value } from './public_types';
18
+ import { CustomSignals, LogLevel as RemoteConfigLogLevel, RemoteConfig, Value, RemoteConfigOptions } from './public_types';
19
19
  /**
20
20
  *
21
21
  * @param app - The {@link @firebase/app#FirebaseApp} instance.
22
+ * @param options - Optional. The {@link RemoteConfigOptions} with which to instantiate the
23
+ * Remote Config instance.
22
24
  * @returns A {@link RemoteConfig} instance.
23
25
  *
24
26
  * @public
25
27
  */
26
- export declare function getRemoteConfig(app?: FirebaseApp): RemoteConfig;
28
+ export declare function getRemoteConfig(app?: FirebaseApp, options?: RemoteConfigOptions): RemoteConfig;
27
29
  /**
28
30
  * Makes the last fetched config available to the getters.
29
31
  * @param remoteConfig - The {@link RemoteConfig} instance.
@@ -15,7 +15,8 @@
15
15
  * limitations under the License.
16
16
  */
17
17
  import { StorageCache } from '../storage/storage_cache';
18
- import { FetchResponse, RemoteConfigFetchClient, FetchRequest } from './remote_config_fetch_client';
18
+ import { FetchResponse } from '../public_types';
19
+ import { RemoteConfigFetchClient, FetchRequest } from './remote_config_fetch_client';
19
20
  import { Storage } from '../storage/storage';
20
21
  import { Logger } from '@firebase/logger';
21
22
  /**
@@ -14,7 +14,7 @@
14
14
  * See the License for the specific language governing permissions and
15
15
  * limitations under the License.
16
16
  */
17
- import { CustomSignals } from '../public_types';
17
+ import { CustomSignals, FetchResponse } from '../public_types';
18
18
  /**
19
19
  * Defines a client, as in https://en.wikipedia.org/wiki/Client%E2%80%93server_model, for the
20
20
  * Remote Config server (https://firebase.google.com/docs/reference/remote-config/rest).
@@ -33,12 +33,6 @@ export interface RemoteConfigFetchClient {
33
33
  */
34
34
  fetch(request: FetchRequest): Promise<FetchResponse>;
35
35
  }
36
- /**
37
- * Defines a self-descriptive reference for config key-value pairs.
38
- */
39
- export interface FirebaseRemoteConfigObject {
40
- [key: string]: string;
41
- }
42
36
  /**
43
37
  * Shims a minimal AbortSignal.
44
38
  *
@@ -96,34 +90,3 @@ export interface FetchRequest {
96
90
  */
97
91
  customSignals?: CustomSignals;
98
92
  }
99
- /**
100
- * Defines a successful response (200 or 304).
101
- *
102
- * <p>Modeled after the native {@link Response} interface, but simplified for Remote Config's
103
- * use case.
104
- */
105
- export interface FetchResponse {
106
- /**
107
- * The HTTP status, which is useful for differentiating success responses with data from
108
- * those without.
109
- *
110
- * <p>{@link RemoteConfigClient} is modeled after the native {@link GlobalFetch} interface, so
111
- * HTTP status is first-class.
112
- *
113
- * <p>Disambiguation: the fetch response returns a legacy "state" value that is redundant with the
114
- * HTTP status code. The former is normalized into the latter.
115
- */
116
- status: number;
117
- /**
118
- * Defines the ETag response header value.
119
- *
120
- * <p>Only defined for 200 and 304 responses.
121
- */
122
- eTag?: string;
123
- /**
124
- * Defines the map of parameters returned as "entries" in the fetch response body.
125
- *
126
- * <p>Only defined for 200 responses.
127
- */
128
- config?: FirebaseRemoteConfigObject;
129
- }
@@ -14,7 +14,8 @@
14
14
  * See the License for the specific language governing permissions and
15
15
  * limitations under the License.
16
16
  */
17
- import { FetchResponse, RemoteConfigFetchClient, FetchRequest } from './remote_config_fetch_client';
17
+ import { FetchResponse } from '../public_types';
18
+ import { RemoteConfigFetchClient, FetchRequest } from './remote_config_fetch_client';
18
19
  import { _FirebaseInstallationsInternal } from '@firebase/installations';
19
20
  /**
20
21
  * Implements the Client abstraction for the Remote Config REST API.
@@ -14,7 +14,8 @@
14
14
  * See the License for the specific language governing permissions and
15
15
  * limitations under the License.
16
16
  */
17
- import { RemoteConfigAbortSignal, RemoteConfigFetchClient, FetchResponse, FetchRequest } from './remote_config_fetch_client';
17
+ import { FetchResponse } from '../public_types';
18
+ import { RemoteConfigAbortSignal, RemoteConfigFetchClient, FetchRequest } from './remote_config_fetch_client';
18
19
  import { ThrottleMetadata, Storage } from '../storage/storage';
19
20
  /**
20
21
  * Supports waiting on a backoff by:
@@ -16,6 +16,7 @@
16
16
  */
17
17
  import { ErrorFactory } from '@firebase/util';
18
18
  export declare const enum ErrorCode {
19
+ ALREADY_INITIALIZED = "already-initialized",
19
20
  REGISTRATION_WINDOW = "registration-window",
20
21
  REGISTRATION_PROJECT_ID = "registration-project-id",
21
22
  REGISTRATION_API_KEY = "registration-api-key",
@@ -46,6 +46,58 @@ export interface RemoteConfig {
46
46
  */
47
47
  lastFetchStatus: FetchStatus;
48
48
  }
49
+ /**
50
+ * Defines a self-descriptive reference for config key-value pairs.
51
+ */
52
+ export interface FirebaseRemoteConfigObject {
53
+ [key: string]: string;
54
+ }
55
+ /**
56
+ * Defines a successful response (200 or 304).
57
+ *
58
+ * <p>Modeled after the native `Response` interface, but simplified for Remote Config's
59
+ * use case.
60
+ */
61
+ export interface FetchResponse {
62
+ /**
63
+ * The HTTP status, which is useful for differentiating success responses with data from
64
+ * those without.
65
+ *
66
+ * <p>The Remote Config client is modeled after the native `Fetch` interface, so
67
+ * HTTP status is first-class.
68
+ *
69
+ * <p>Disambiguation: the fetch response returns a legacy "state" value that is redundant with the
70
+ * HTTP status code. The former is normalized into the latter.
71
+ */
72
+ status: number;
73
+ /**
74
+ * Defines the ETag response header value.
75
+ *
76
+ * <p>Only defined for 200 and 304 responses.
77
+ */
78
+ eTag?: string;
79
+ /**
80
+ * Defines the map of parameters returned as "entries" in the fetch response body.
81
+ *
82
+ * <p>Only defined for 200 responses.
83
+ */
84
+ config?: FirebaseRemoteConfigObject;
85
+ }
86
+ /**
87
+ * Options for Remote Config initialization.
88
+ *
89
+ * @public
90
+ */
91
+ export interface RemoteConfigOptions {
92
+ /**
93
+ * The ID of the template to use. If not provided, defaults to "firebase".
94
+ */
95
+ templateId?: string;
96
+ /**
97
+ * Hydrates the state with an initial fetch response.
98
+ */
99
+ initialFetchResponse?: FetchResponse;
100
+ }
49
101
  /**
50
102
  * Indicates the source of a value.
51
103
  *
@@ -23,7 +23,7 @@ import { Logger } from '@firebase/logger';
23
23
  /**
24
24
  * Encapsulates business logic mapping network and storage dependencies to the public SDK API.
25
25
  *
26
- * See {@link https://github.com/firebase/firebase-js-sdk/blob/main/packages/firebase/index.d.ts|interface documentation} for method descriptions.
26
+ * See {@link https://github.com/firebase/firebase-js-sdk/blob/main/packages/firebase/compat/index.d.ts|interface documentation} for method descriptions.
27
27
  */
28
28
  export declare class RemoteConfig implements RemoteConfigType {
29
29
  readonly app: FirebaseApp;
@@ -15,7 +15,7 @@
15
15
  * limitations under the License.
16
16
  */
17
17
  import { FetchStatus, CustomSignals } from '@firebase/remote-config-types';
18
- import { FetchResponse, FirebaseRemoteConfigObject } from '../client/remote_config_fetch_client';
18
+ import { FetchResponse, FirebaseRemoteConfigObject } from '../public_types';
19
19
  /**
20
20
  * A general-purpose store keyed by app + namespace + {@link
21
21
  * ProjectNamespaceKeyFieldValue}.
@@ -44,17 +44,7 @@ export declare function openDatabase(): Promise<IDBDatabase>;
44
44
  /**
45
45
  * Abstracts data persistence.
46
46
  */
47
- export declare class Storage {
48
- private readonly appId;
49
- private readonly appName;
50
- private readonly namespace;
51
- private readonly openDbPromise;
52
- /**
53
- * @param appId enables storage segmentation by app (ID + name).
54
- * @param appName enables storage segmentation by app (ID + name).
55
- * @param namespace enables storage segmentation by namespace.
56
- */
57
- constructor(appId: string, appName: string, namespace: string, openDbPromise?: Promise<IDBDatabase>);
47
+ export declare abstract class Storage {
58
48
  getLastFetchStatus(): Promise<FetchStatus | undefined>;
59
49
  setLastFetchStatus(status: FetchStatus): Promise<void>;
60
50
  getLastSuccessfulFetchTimestampMillis(): Promise<number | undefined>;
@@ -69,6 +59,22 @@ export declare class Storage {
69
59
  setThrottleMetadata(metadata: ThrottleMetadata): Promise<void>;
70
60
  deleteThrottleMetadata(): Promise<void>;
71
61
  getCustomSignals(): Promise<CustomSignals | undefined>;
62
+ abstract setCustomSignals(customSignals: CustomSignals): Promise<CustomSignals>;
63
+ abstract get<T>(key: ProjectNamespaceKeyFieldValue): Promise<T | undefined>;
64
+ abstract set<T>(key: ProjectNamespaceKeyFieldValue, value: T): Promise<void>;
65
+ abstract delete(key: ProjectNamespaceKeyFieldValue): Promise<void>;
66
+ }
67
+ export declare class IndexedDbStorage extends Storage {
68
+ private readonly appId;
69
+ private readonly appName;
70
+ private readonly namespace;
71
+ private readonly openDbPromise;
72
+ /**
73
+ * @param appId enables storage segmentation by app (ID + name).
74
+ * @param appName enables storage segmentation by app (ID + name).
75
+ * @param namespace enables storage segmentation by namespace.
76
+ */
77
+ constructor(appId: string, appName: string, namespace: string, openDbPromise?: Promise<IDBDatabase>);
72
78
  setCustomSignals(customSignals: CustomSignals): Promise<CustomSignals>;
73
79
  /**
74
80
  * Gets a value from the database using the provided transaction.
@@ -92,4 +98,11 @@ export declare class Storage {
92
98
  delete(key: ProjectNamespaceKeyFieldValue): Promise<void>;
93
99
  createCompositeKey(key: ProjectNamespaceKeyFieldValue): string;
94
100
  }
101
+ export declare class InMemoryStorage extends Storage {
102
+ private storage;
103
+ get<T>(key: ProjectNamespaceKeyFieldValue): Promise<T>;
104
+ set<T>(key: ProjectNamespaceKeyFieldValue, value: T): Promise<void>;
105
+ delete(key: ProjectNamespaceKeyFieldValue): Promise<void>;
106
+ setCustomSignals(customSignals: CustomSignals): Promise<CustomSignals>;
107
+ }
95
108
  export {};
@@ -15,7 +15,7 @@
15
15
  * limitations under the License.
16
16
  */
17
17
  import { FetchStatus, CustomSignals } from '@firebase/remote-config-types';
18
- import { FirebaseRemoteConfigObject } from '../client/remote_config_fetch_client';
18
+ import { FirebaseRemoteConfigObject } from '../public_types';
19
19
  import { Storage } from './storage';
20
20
  /**
21
21
  * A memory cache layer over storage to support the SDK's synchronous read requirements.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@firebase/remote-config",
3
- "version": "0.5.0-canary.d8aabaf9e",
3
+ "version": "0.5.0-canary.dcfb3da2e",
4
4
  "description": "The Remote Config package of the Firebase JS SDK",
5
5
  "author": "Firebase <firebase-support@google.com> (https://firebase.google.com/)",
6
6
  "main": "dist/index.cjs.js",
@@ -37,20 +37,20 @@
37
37
  "typings:internal": "node ../../scripts/build/use_typings.js ./dist/src/index.d.ts"
38
38
  },
39
39
  "peerDependencies": {
40
- "@firebase/app": "0.10.18-canary.d8aabaf9e"
40
+ "@firebase/app": "0.11.0-canary.dcfb3da2e"
41
41
  },
42
42
  "dependencies": {
43
- "@firebase/installations": "0.6.12-canary.d8aabaf9e",
44
- "@firebase/logger": "0.4.4-canary.d8aabaf9e",
45
- "@firebase/util": "1.10.3-canary.d8aabaf9e",
46
- "@firebase/component": "0.6.12-canary.d8aabaf9e",
43
+ "@firebase/installations": "0.6.12-canary.dcfb3da2e",
44
+ "@firebase/logger": "0.4.4-canary.dcfb3da2e",
45
+ "@firebase/util": "1.10.3-canary.dcfb3da2e",
46
+ "@firebase/component": "0.6.12-canary.dcfb3da2e",
47
47
  "tslib": "^2.1.0"
48
48
  },
49
49
  "license": "Apache-2.0",
50
50
  "devDependencies": {
51
- "@firebase/app": "0.10.18-canary.d8aabaf9e",
52
- "rollup": "2.79.1",
53
- "rollup-plugin-typescript2": "0.31.2",
51
+ "@firebase/app": "0.11.0-canary.dcfb3da2e",
52
+ "rollup": "2.79.2",
53
+ "rollup-plugin-typescript2": "0.36.0",
54
54
  "typescript": "5.5.4"
55
55
  },
56
56
  "repository": {
@@ -1,17 +0,0 @@
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
- */
17
- import '../setup';
@@ -1,17 +0,0 @@
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
- */
17
- import '../setup';
@@ -1,17 +0,0 @@
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
- */
17
- import '../setup';
@@ -1,17 +0,0 @@
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
- */
17
- import './setup';
@@ -1,17 +0,0 @@
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
- */
17
- import './setup';
@@ -1,17 +0,0 @@
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
- */
17
- import './setup';
@@ -1,17 +0,0 @@
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
- */
17
- import '../setup';
@@ -1,17 +0,0 @@
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
- */
17
- import '../setup';
@@ -1,17 +0,0 @@
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
- */
17
- import './setup';
@@ -1,17 +0,0 @@
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
- */
17
- import '../setup';
@@ -1,17 +0,0 @@
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
- */
17
- import '../setup';
@@ -1,17 +0,0 @@
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
- */
17
- import '../setup';
@@ -1,17 +0,0 @@
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
- */
17
- import './setup';
@@ -1,17 +0,0 @@
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
- */
17
- import './setup';