diff options
Diffstat (limited to 'src/DocGen/DocGen.ts')
| -rw-r--r-- | src/DocGen/DocGen.ts | 18 |
1 files changed, 4 insertions, 14 deletions
diff --git a/src/DocGen/DocGen.ts b/src/DocGen/DocGen.ts index 9de9d41..1b5b1e1 100644 --- a/src/DocGen/DocGen.ts +++ b/src/DocGen/DocGen.ts @@ -1,19 +1,9 @@ -/** - * Contains the supported doxygen commands - * - * @export - * @enum {number} - */ -export enum DoxygenCommands { - brief = "brief", - return = "return", - param = "param", - detailed = "(Detailed description)", -} +import { Range } from "vscode"; export interface IDocGen { /** - * Generate documentation string and write it to the active editor + * @brief Generate documentation string and write it to the active editor + * @param {Range} rangeToReplace Range to replace with the generated comment. */ - GenerateDoc(); + GenerateDoc(rangeToReplace: Range); } |