summaryrefslogtreecommitdiffstats
path: root/src/Config.ts
diff options
context:
space:
mode:
authorRowan Goemans <RB.Goemans@student.han.nl>2017-10-14 22:29:02 +0200
committerRowan Goemans <RB.Goemans@student.han.nl>2017-10-14 22:29:02 +0200
commit0ebfa5bd12e529d8febe73c85d3bf48c4d4997e8 (patch)
tree30f7d859a9270b4c70d366a93571054295b4e070 /src/Config.ts
parent140229888a0e4a120c11ecaae81132d07cc69e5b (diff)
downloaddoxdocgen-0ebfa5bd12e529d8febe73c85d3bf48c4d4997e8.tar.gz
-- Added extensive templating the be able to generated different types of doxygen comment.
Diffstat (limited to 'src/Config.ts')
-rw-r--r--src/Config.ts13
1 files changed, 11 insertions, 2 deletions
diff --git a/src/Config.ts b/src/Config.ts
index 2e449cf..f8011c3 100644
--- a/src/Config.ts
+++ b/src/Config.ts
@@ -3,6 +3,15 @@ export enum ConfigType {
}
export enum Config {
- commentStart = "commentStart",
- generateReturnType = "generateReturnType",
+ triggerSequence = "triggerSequence",
+ firstLine = "firstLine",
+ commentPrefix = "commentPrefix",
+ lastLine = "lastLine",
+ newLineAfterBrief = "newLineAfterBrief",
+ newLineAfterParams = "newLineAfterParams",
+ newLineAfterTParams = "newLineAfterTParams",
+ briefTemplate = "briefTemplate",
+ paramTemplate = "paramTemplate",
+ tparamTemplate = "tparamTemplate",
+ returnTemplate = "returnTemplate",
}