(index: number)
| 4734 | * @returns Log data or null if not found |
| 4735 | */ |
| 4736 | export async function getLogByIndex(index: number): Promise<LogOption | null> { |
| 4737 | const logs = await loadMessageLogs() |
| 4738 | return logs[index] || null |
| 4739 | } |
| 4740 | |
| 4741 | /** |
| 4742 | * Looks up unresolved tool uses in the transcript by tool_use_id. |
nothing calls this directly
no test coverage detected