( worktreePaths: string[], limit?: number, initialEnrichCount: number = INITIAL_ENRICH_COUNT, )
| 4294 | } |
| 4295 | |
| 4296 | export async function loadSameRepoMessageLogs( |
| 4297 | worktreePaths: string[], |
| 4298 | limit?: number, |
| 4299 | initialEnrichCount: number = INITIAL_ENRICH_COUNT, |
| 4300 | ): Promise<LogOption[]> { |
| 4301 | const result = await loadSameRepoMessageLogsProgressive( |
| 4302 | worktreePaths, |
| 4303 | limit, |
| 4304 | initialEnrichCount, |
| 4305 | ) |
| 4306 | return result.logs |
| 4307 | } |
| 4308 | |
| 4309 | export async function loadSameRepoMessageLogsProgressive( |
| 4310 | worktreePaths: string[], |
no test coverage detected