blob: 5eaf8c1c3ca66d7b7e34f70663a912bc8759acfd (
plain)
1
2
3
4
5
6
7
8
9
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, gitConfig: GitConfig);
}
|