Skip to content

Commit

Permalink
Update with Firestore doc changes
Browse files Browse the repository at this point in the history
  • Loading branch information
hsubox76 committed Feb 13, 2023
1 parent b3d0c67 commit 01654a7
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions docs-devsite/firestore_.aggregatefield.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export declare class AggregateField<T>

| Property | Modifiers | Type | Description |
| --- | --- | --- | --- |
| [type](./firestore_.aggregatefield.md#aggregatefieldtype) | | string | A type string to uniquely identify instances of this class. |
| [type](./firestore_.aggregatefield.md#aggregatefieldtype) | | (not declared) | A type string to uniquely identify instances of this class. |

## AggregateField.type

Expand All @@ -31,5 +31,5 @@ A type string to uniquely identify instances of this class.
<b>Signature:</b>

```typescript
type: string;
readonly type = "AggregateField";
```
2 changes: 1 addition & 1 deletion docs-devsite/firestore_.aggregatespec.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ https://github.com/firebase/firebase-js-sdk
{% endcomment %}

# AggregateSpec interface
A type whose property values are all `AggregateField` objects.
Specifies a set of aggregations and their aliases.

<b>Signature:</b>

Expand Down
4 changes: 2 additions & 2 deletions docs-devsite/firestore_.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ https://github.com/firebase/firebase-js-sdk

| Interface | Description |
| --- | --- |
| [AggregateSpec](./firestore_.aggregatespec.md#aggregatespec_interface) | A type whose property values are all <code>AggregateField</code> objects. |
| [AggregateSpec](./firestore_.aggregatespec.md#aggregatespec_interface) | Specifies a set of aggregations and their aliases. |
| [DocumentChange](./firestore_.documentchange.md#documentchange_interface) | A <code>DocumentChange</code> represents a change to the documents matching a query. It contains the document affected and the type of change that occurred. |
| [DocumentData](./firestore_.documentdata.md#documentdata_interface) | Document data (for use with [setDoc()](./firestore_lite.md#setdoc)<!-- -->) consists of fields mapped to values. |
| [FirestoreDataConverter](./firestore_.firestoredataconverter.md#firestoredataconverter_interface) | Converter used by <code>withConverter()</code> to transform user objects of type <code>T</code> into Firestore data.<!-- -->Using the converter allows you to specify generic type arguments when storing and retrieving objects from Firestore. |
Expand Down Expand Up @@ -1946,7 +1946,7 @@ The union of all `AggregateField` types that are supported by Firestore.
<b>Signature:</b>

```typescript
export declare type AggregateFieldType = AggregateField<number>;
export declare type AggregateFieldType = AggregateField<number | null>;
```

## AggregateSpecData
Expand Down
4 changes: 2 additions & 2 deletions docs-devsite/firestore_lite.aggregatefield.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export declare class AggregateField<T>

| Property | Modifiers | Type | Description |
| --- | --- | --- | --- |
| [type](./firestore_lite.aggregatefield.md#aggregatefieldtype) | | string | A type string to uniquely identify instances of this class. |
| [type](./firestore_lite.aggregatefield.md#aggregatefieldtype) | | (not declared) | A type string to uniquely identify instances of this class. |

## AggregateField.type

Expand All @@ -31,5 +31,5 @@ A type string to uniquely identify instances of this class.
<b>Signature:</b>

```typescript
type: string;
readonly type = "AggregateField";
```
2 changes: 1 addition & 1 deletion docs-devsite/firestore_lite.aggregatespec.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ https://github.com/firebase/firebase-js-sdk
{% endcomment %}

# AggregateSpec interface
A type whose property values are all `AggregateField` objects.
Specifies a set of aggregations and their aliases.

<b>Signature:</b>

Expand Down
4 changes: 2 additions & 2 deletions docs-devsite/firestore_lite.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ https://github.com/firebase/firebase-js-sdk

| Interface | Description |
| --- | --- |
| [AggregateSpec](./firestore_lite.aggregatespec.md#aggregatespec_interface) | A type whose property values are all <code>AggregateField</code> objects. |
| [AggregateSpec](./firestore_lite.aggregatespec.md#aggregatespec_interface) | Specifies a set of aggregations and their aliases. |
| [DocumentData](./firestore_lite.documentdata.md#documentdata_interface) | Document data (for use with [setDoc()](./firestore_lite.md#setdoc)<!-- -->) consists of fields mapped to values. |
| [FirestoreDataConverter](./firestore_lite.firestoredataconverter.md#firestoredataconverter_interface) | Converter used by <code>withConverter()</code> to transform user objects of type <code>T</code> into Firestore data.<!-- -->Using the converter allows you to specify generic type arguments when storing and retrieving objects from Firestore. |
| [Settings](./firestore_lite.settings.md#settings_interface) | Specifies custom configurations for your Cloud Firestore instance. You must set these before invoking any other methods. |
Expand Down Expand Up @@ -1277,7 +1277,7 @@ The union of all `AggregateField` types that are supported by Firestore.
<b>Signature:</b>

```typescript
export declare type AggregateFieldType = AggregateField<number>;
export declare type AggregateFieldType = AggregateField<number | null>;
```

## AggregateSpecData
Expand Down

0 comments on commit 01654a7

Please sign in to comment.