@firebase/remote-config-types 0.3.3 → 0.4.0-canary.144bc3709
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.
- package/index.d.ts +13 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -173,6 +173,19 @@ export type FetchStatus = 'no-fetch-yet' | 'success' | 'failure' | 'throttle';
|
|
|
173
173
|
*/
|
|
174
174
|
export type LogLevel = 'debug' | 'error' | 'silent';
|
|
175
175
|
|
|
176
|
+
/**
|
|
177
|
+
* Defines the type for representing custom signals and their values.
|
|
178
|
+
*
|
|
179
|
+
* <p>The values in CustomSignals must be one of the following types:
|
|
180
|
+
*
|
|
181
|
+
* <ul>
|
|
182
|
+
* <li><code>string</code>
|
|
183
|
+
* <li><code>number</code>
|
|
184
|
+
* <li><code>null</code>
|
|
185
|
+
* </ul>
|
|
186
|
+
*/
|
|
187
|
+
export type CustomSignals = { [key: string]: string | number | null };
|
|
188
|
+
|
|
176
189
|
declare module '@firebase/component' {
|
|
177
190
|
interface NameServiceMapping {
|
|
178
191
|
'remoteConfig-compat': RemoteConfig;
|
package/package.json
CHANGED