From cf5e94e992237bc2f32f0ec92c6babb4b93de612 Mon Sep 17 00:00:00 2001 From: Christoph Schlosser Date: Fri, 6 Oct 2017 17:34:19 +0200 Subject: Initial files --- src/DocGen/DocGen.ts | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/DocGen/DocGen.ts (limited to 'src/DocGen/DocGen.ts') diff --git a/src/DocGen/DocGen.ts b/src/DocGen/DocGen.ts new file mode 100644 index 0000000..9de9d41 --- /dev/null +++ b/src/DocGen/DocGen.ts @@ -0,0 +1,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(); +} -- cgit v1.2.3