Skip to content

Commit 8e6ffc5

Browse files
committed
Fix format
1 parent 5123984 commit 8e6ffc5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

packages/firestore/src/api/index_configuration.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ export {
3737

3838
/**
3939
* A single field element in an index configuration.
40+
* @beta
4041
*/
41-
/** @beta */
4242
export interface IndexField {
4343
/** The field path to index. */
4444
readonly fieldPath: string;
@@ -62,8 +62,8 @@ export interface IndexField {
6262

6363
/**
6464
* The SDK definition of a Firestore index.
65+
* @beta
6566
*/
66-
/** @beta */
6767
export interface Index {
6868
/** The ID of the collection to index. */
6969
readonly collectionGroup: string;
@@ -78,8 +78,8 @@ export interface Index {
7878
*
7979
* See {@link https://firebase.google.com/docs/reference/firestore/indexes/#json_format | JSON Format}
8080
* for a description of the format of the index definition.
81+
* @beta
8182
*/
82-
/** @beta */
8383
export interface IndexConfiguration {
8484
/** A list of all Firestore indexes. */
8585
readonly indexes?: Index[];
@@ -107,8 +107,8 @@ export interface IndexConfiguration {
107107
* @throws FirestoreError if the JSON format is invalid.
108108
* @returns A `Promise` that resolves once all indices are successfully
109109
* configured.
110+
* @beta
110111
*/
111-
/** @beta */
112112
export function setIndexConfiguration(
113113
firestore: Firestore,
114114
configuration: IndexConfiguration
@@ -138,8 +138,8 @@ export function setIndexConfiguration(
138138
* @throws FirestoreError if the JSON format is invalid.
139139
* @returns A `Promise` that resolves once all indices are successfully
140140
* configured.
141+
* @beta
141142
*/
142-
/** @beta */
143143
export function setIndexConfiguration(
144144
firestore: Firestore,
145145
json: string

0 commit comments

Comments
 (0)