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

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