Interface CommentTag

interface CommentTag {
    content: JSONOutput.CommentDisplayPart[];
    tag: `@${string}`;
    name?: string;
}

Hierarchy

Properties

Properties

tag: `@${string}`

The name of this tag, e.g. @returns, @example

name?: string

Some tags, (@typedef, @param, @property, etc.) may have a user defined identifier associated with them. If this tag is one of those, it will be parsed out and included here.