File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -1971,6 +1971,11 @@ declare namespace firebase.remoteConfig {
1971
1971
* Defines the log level to use.
1972
1972
*/
1973
1973
setLogLevel ( logLevel : LogLevel ) : void ;
1974
+
1975
+ /**
1976
+ * Sets custom signals for the Remote Config instance.
1977
+ */
1978
+ setCustomSignals ( customSignals : CustomSignals ) : Promise < void > ;
1974
1979
}
1975
1980
1976
1981
/**
@@ -2046,6 +2051,19 @@ declare namespace firebase.remoteConfig {
2046
2051
* Defines levels of Remote Config logging.
2047
2052
*/
2048
2053
export type LogLevel = 'debug' | 'error' | 'silent' ;
2054
+
2055
+ /**
2056
+ * Defines the type for representing custom signals and their values.
2057
+ *
2058
+ * <p>The values in CustomSignals must be one of the following types:
2059
+ *
2060
+ * <ul>
2061
+ * <li><code>string</code>
2062
+ * <li><code>number</code>
2063
+ * </ul>
2064
+ */
2065
+ export type CustomSignals = { [ key : string ] : string | number } ;
2066
+
2049
2067
/**
2050
2068
* This method provides two different checks:
2051
2069
*
You can’t perform that action at this time.
0 commit comments