()
| 695 | } |
| 696 | |
| 697 | get docs() { |
| 698 | const documents = this.native.getDocuments(); |
| 699 | const count = documents.size(); |
| 700 | const docs = []; |
| 701 | for (let i = 0; i < count; i++) { |
| 702 | docs.push(QueryDocumentSnapshot.fromNative(documents.get(i))); |
| 703 | } |
| 704 | return docs; |
| 705 | } |
| 706 | |
| 707 | get empty(): boolean { |
| 708 | return this.native.isEmpty(); |
nothing calls this directly
no test coverage detected