( worktreePaths: string[], limit?: number, initialEnrichCount: number = INITIAL_ENRICH_COUNT, )
| 4071 | } |
| 4072 | |
| 4073 | export async function loadSameRepoMessageLogs( |
| 4074 | worktreePaths: string[], |
| 4075 | limit?: number, |
| 4076 | initialEnrichCount: number = INITIAL_ENRICH_COUNT, |
| 4077 | ): Promise<LogOption[]> { |
| 4078 | const result = await loadSameRepoMessageLogsProgressive( |
| 4079 | worktreePaths, |
| 4080 | limit, |
| 4081 | initialEnrichCount, |
| 4082 | ) |
| 4083 | return result.logs |
| 4084 | } |
| 4085 | |
| 4086 | export async function loadSameRepoMessageLogsProgressive( |
| 4087 | worktreePaths: string[], |
no test coverage detected