Interface JSDocParseOptions

interface JSDocParseOptions {
    end?: string | RegExp;
    line?: string | RegExp;
    start?: string | RegExp;
}

Properties

Properties

end?: string | RegExp

The end symbol of your comment format. Defaults to */.

line?: string | RegExp

The symbol that start a line of your comment format. Defaults to *.

start?: string | RegExp

The start symbol of your comment format. Defaults to /**.