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