diff options
Diffstat (limited to 'src/Common')
| -rw-r--r-- | src/Common/IDocGen.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Common/IDocGen.ts b/src/Common/IDocGen.ts index 1b5b1e1..5eaf8c1 100644 --- a/src/Common/IDocGen.ts +++ b/src/Common/IDocGen.ts @@ -1,9 +1,10 @@ import { Range } from "vscode"; +import GitConfig from "../GitConfig"; export interface IDocGen { /** * @brief Generate documentation string and write it to the active editor * @param {Range} rangeToReplace Range to replace with the generated comment. */ - GenerateDoc(rangeToReplace: Range); + GenerateDoc(rangeToReplace: Range, gitConfig: GitConfig); } |