summaryrefslogtreecommitdiffstats
path: root/src/Common/IDocGen.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/Common/IDocGen.ts')
-rw-r--r--src/Common/IDocGen.ts3
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);
}