Definition of documentation comments (e.g. Javadoc/JSdoc)
interface IDocComment { close?: string; open: string;}
close?: string
The string that appears on the last line and closes the doc comment (e.g. ' * /').
open: string
The string that starts a doc comment (e.g. '/**')
Definition of documentation comments (e.g. Javadoc/JSdoc)