summaryrefslogtreecommitdiffstats
path: root/src/DocGen/DocGen.ts
blob: 40ea205a990abb58cd85fde3197fff0de5ecc3fa (plain)
1
2
3
4
5
6
7
8
9
10
import { Range } from "vscode";


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);
}