Interface IDocComment

Expand description

Definition of documentation comments (e.g. Javadoc/JSdoc)

interface IDocComment {
    close?: string;
    open: string;
}

Properties§

§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. '/**')