(t: number)
| 142 | * Used by the time-playback feature to render situational replay. |
| 143 | */ |
| 144 | export function fetchSnapshotAt(t: number): Promise<SnapshotAt> { |
| 145 | return apiClient.get<SnapshotAt>(`/api/snapshot_at?t=${encodeURIComponent(t)}`); |
| 146 | } |
| 147 | |
| 148 | // ── Scenario API ───────────────────────────────────────────────────────────── |
| 149 |