summaryrefslogtreecommitdiffstats
path: root/src/DocGen/DocGen.ts
blob: 9de9d4128b74b518d6a444be45b6cf0b159c01f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/**
 * Contains the supported doxygen commands
 *
 * @export
 * @enum {number}
 */
export enum DoxygenCommands {
    brief = "brief",
    return = "return",
    param = "param",
    detailed = "(Detailed description)",
}

export interface IDocGen {
    /**
     * Generate documentation string and write it to the active editor
     */
    GenerateDoc();
}