(fieldValues: DocumentSnapshot<T> | FieldValue[])
| 461 | endBefore(snapshot: DocumentSnapshot<T>): Query; |
| 462 | endBefore(fieldValues: FieldValue[]): Query; |
| 463 | endBefore(fieldValues: DocumentSnapshot<T> | FieldValue[]): Query { |
| 464 | if (Array.isArray(fieldValues)) { |
| 465 | return Query.fromNative(this.native.endBefore(fieldValues.map((value) => value.native))); |
| 466 | } else { |
| 467 | return Query.fromNative(this.native.endBefore(fieldValues?.native)); |
| 468 | } |
| 469 | } |
| 470 | |
| 471 | get(options?: GetOptions): Promise<QuerySnapshot> { |
| 472 | let source: com.google.firebase.firestore.Source; |
nothing calls this directly
no test coverage detected