File tree Expand file tree Collapse file tree 2 files changed +215
-142
lines changed
rules-unit-testing/functions Expand file tree Collapse file tree 2 files changed +215
-142
lines changed Original file line number Diff line number Diff line change @@ -107,7 +107,6 @@ export interface IndexConfiguration {
107
107
* before setting an index configuration. If IndexedDb is not enabled, any
108
108
* index configuration is ignored.
109
109
*
110
- * @internal
111
110
* @param firestore - The {@link Firestore} instance to configure indexes for.
112
111
* @param configuration -The index definition.
113
112
* @throws FirestoreError if the JSON format is invalid.
@@ -118,6 +117,7 @@ export function setIndexConfiguration(
118
117
firestore : Firestore ,
119
118
configuration : IndexConfiguration
120
119
) : Promise < void > ;
120
+
121
121
/**
122
122
* Configures indexing for local query execution. Any previous index
123
123
* configuration is overridden. The `Promise` resolves once the index
@@ -137,7 +137,6 @@ export function setIndexConfiguration(
137
137
* firestore:indexes`). If the JSON format is invalid, this method throws an
138
138
* error.
139
139
*
140
- * @internal
141
140
* @param firestore - The {@link Firestore} instance to configure indexes for.
142
141
* @param json -The JSON format exported by the Firebase CLI.
143
142
* @throws FirestoreError if the JSON format is invalid.
@@ -148,6 +147,7 @@ export function setIndexConfiguration(
148
147
firestore : Firestore ,
149
148
json : string
150
149
) : Promise < void > ;
150
+
151
151
export function setIndexConfiguration (
152
152
firestore : Firestore ,
153
153
jsonOrConfiguration : string | IndexConfiguration
You can’t perform that action at this time.
0 commit comments