()
| 215 | } |
| 216 | |
| 217 | get items(): Reference[] { |
| 218 | const items = this.native.items; |
| 219 | const count = items.count; |
| 220 | const result = []; |
| 221 | for (let i = 0; i < count; i++) { |
| 222 | result.push(Reference.fromNative(items.objectAtIndex(i))); |
| 223 | } |
| 224 | return result; |
| 225 | } |
| 226 | |
| 227 | get nextPageToken(): string { |
| 228 | return this.native.pageToken; |
nothing calls this directly
no test coverage detected