Shape of each entry from the GitLab merge_request diffs API
| 35 | |
| 36 | /** Shape of each entry from the GitLab merge_request diffs API */ |
| 37 | interface GitLabDiffEntry { |
| 38 | diff: string; |
| 39 | old_path: string; |
| 40 | new_path: string; |
| 41 | new_file: boolean; |
| 42 | deleted_file: boolean; |
| 43 | renamed_file: boolean; |
| 44 | /** Content withheld because the file's diff exceeds GitLab's size limits. Absent on older GitLab. */ |
| 45 | too_large?: boolean | null; |
| 46 | /** Diff collapsed (content omitted from the response). Absent on older GitLab. */ |
| 47 | collapsed?: boolean | null; |
| 48 | } |
| 49 | |
| 50 | export { parsePaginatedArray } from "./cli-pagination"; |
| 51 | import { parsePaginatedArray } from "./cli-pagination"; |
nothing calls this directly
no outgoing calls
no test coverage detected