(args: { fs: object; dir: string; filepath: string; cache?: object })
| 31 | /** Subset of `isomorphic-git`'s API used for `rm`. */ |
| 32 | export interface IsomorphicGitRmClient { |
| 33 | remove(args: { fs: object; dir: string; filepath: string; cache?: object }): Promise<void>; |
| 34 | } |
| 35 | |
| 36 | export interface GitAddOptions { |