| 53 | export type CommitChangeKind = "created" | "modified" | "tagged" | "log"; |
| 54 | |
| 55 | export interface CommitFile { |
| 56 | /** 文件路径(不翻译) */ |
| 57 | path: string; |
| 58 | changeKind: CommitChangeKind; |
| 59 | } |
| 60 | |
| 61 | export interface CommitResult { |
| 62 | kind: "commit"; |
nothing calls this directly
no outgoing calls
no test coverage detected