( projectId: string, limit?: number | undefined | null, )
| 77 | } |
| 78 | |
| 79 | export async function loadProjectCommitHistory( |
| 80 | projectId: string, |
| 81 | limit?: number | undefined | null, |
| 82 | ): Promise<ProjectCommitEntry[]> { |
| 83 | return listProjectCommits(projectId, limit ?? null) |
| 84 | } |
| 85 | |
| 86 | export { |
| 87 | captureProjectDiffBaseline, |
nothing calls this directly
no test coverage detected