(fieldValues: DocumentSnapshot<T> | FieldValue[])
| 451 | endAt(snapshot: DocumentSnapshot<T>): Query; |
| 452 | endAt(fieldValues: FieldValue[]): Query; |
| 453 | endAt(fieldValues: DocumentSnapshot<T> | FieldValue[]): Query { |
| 454 | if (Array.isArray(fieldValues)) { |
| 455 | return Query.fromNative(this.native.endAt(fieldValues.map((value) => value?.native || value))); |
| 456 | } else { |
| 457 | return Query.fromNative(this.native.endAt(fieldValues?.native)); |
| 458 | } |
| 459 | } |
| 460 | |
| 461 | endBefore(snapshot: DocumentSnapshot<T>): Query; |
| 462 | endBefore(fieldValues: FieldValue[]): Query; |
nothing calls this directly
no test coverage detected