Skip to content

Commit c904d0b

Browse files
committed
Revert yarn.lock, whitespace and remove @internal annotation.
1 parent b6abcbd commit c904d0b

File tree

2 files changed

+215
-142
lines changed

2 files changed

+215
-142
lines changed

packages/firestore/src/api/index_configuration.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,6 @@ export interface IndexConfiguration {
107107
* before setting an index configuration. If IndexedDb is not enabled, any
108108
* index configuration is ignored.
109109
*
110-
* @internal
111110
* @param firestore - The {@link Firestore} instance to configure indexes for.
112111
* @param configuration -The index definition.
113112
* @throws FirestoreError if the JSON format is invalid.
@@ -118,6 +117,7 @@ export function setIndexConfiguration(
118117
firestore: Firestore,
119118
configuration: IndexConfiguration
120119
): Promise<void>;
120+
121121
/**
122122
* Configures indexing for local query execution. Any previous index
123123
* configuration is overridden. The `Promise` resolves once the index
@@ -137,7 +137,6 @@ export function setIndexConfiguration(
137137
* firestore:indexes`). If the JSON format is invalid, this method throws an
138138
* error.
139139
*
140-
* @internal
141140
* @param firestore - The {@link Firestore} instance to configure indexes for.
142141
* @param json -The JSON format exported by the Firebase CLI.
143142
* @throws FirestoreError if the JSON format is invalid.
@@ -148,6 +147,7 @@ export function setIndexConfiguration(
148147
firestore: Firestore,
149148
json: string
150149
): Promise<void>;
150+
151151
export function setIndexConfiguration(
152152
firestore: Firestore,
153153
jsonOrConfiguration: string | IndexConfiguration

0 commit comments

Comments
 (0)