summaryrefslogtreecommitdiffstats
path: root/src/Config.ts
blob: 3cc78fbb6e33b9ed68e19f102687b10d95f57256 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
export enum ConfigType {
    generic = "doxdocgen.generic",
}

export enum Config {
    triggerSequence = "triggerSequence",
    firstLine = "firstLine",
    commentPrefix = "commentPrefix",
    lastLine = "lastLine",
    newLineAfterBrief = "newLineAfterBrief",
    newLineAfterParams = "newLineAfterParams",
    newLineAfterTParams = "newLineAfterTParams",
    includeTypeAtReturn = "includeTypeAtReturn",
    briefTemplate = "briefTemplate",
    paramTemplate = "paramTemplate",
    tparamTemplate = "tparamTemplate",
    returnTemplate = "returnTemplate",
}