()
| 635 | } |
| 636 | |
| 637 | get docs() { |
| 638 | const documents = this.native.documents; |
| 639 | const count = documents.count; |
| 640 | const docs = []; |
| 641 | for (let i = 0; i < count; i++) { |
| 642 | docs.push(QueryDocumentSnapshot.fromNative(documents.objectAtIndex(i))); |
| 643 | } |
| 644 | return docs; |
| 645 | } |
| 646 | |
| 647 | get empty(): boolean { |
| 648 | return this.native.empty; |
nothing calls this directly
no test coverage detected