(query: DebugQueryResult)
| 132 | } |
| 133 | |
| 134 | function toBundleQueryWindow(query: DebugQueryResult): DebugBundleQueryWindow { |
| 135 | return { |
| 136 | recordsReturned: query.recordsReturned, |
| 137 | recordsAvailable: query.recordsAvailable, |
| 138 | recordsDropped: query.recordsDropped, |
| 139 | oldestRecordId: query.oldestRecordId.toString(), |
| 140 | newestRecordId: query.newestRecordId.toString(), |
| 141 | }; |
| 142 | } |
| 143 | |
| 144 | function toBundleFrameSummary(frame: FrameSnapshot): DebugBundleFrameSummary { |
| 145 | return { |