(args: { fs: object; dir: string; bare?: boolean; defaultBranch?: string })
| 9 | /** Subset of `isomorphic-git`'s API used for `init`. */ |
| 10 | export interface IsomorphicGitInitClient { |
| 11 | init(args: { fs: object; dir: string; bare?: boolean; defaultBranch?: string }): Promise<void>; |
| 12 | } |
| 13 | |
| 14 | /** |