A single track entry yielded by the track iterator.
| 16 | |
| 17 | /** A single track entry yielded by the track iterator. */ |
| 18 | interface TrackEntry { |
| 19 | error: number; |
| 20 | trackImageIds: number[]; |
| 21 | point3DId: Point3DId; |
| 22 | } |
| 23 | |
| 24 | /** Return type shared by both public compute functions. */ |
| 25 | interface ImageStatsResult { |
nothing calls this directly
no outgoing calls
no test coverage detected