Documentation menu

TSCommentType

An enumeration representing different types of comments in TypeScript. Represents the possible types of comments that can be used in TypeScript code, including double slash comments (//), slash star comments (/* */), and unknown comment types.

View source on GitHub

Attributes


DOUBLE_SLASH


Represents a single-line comment starting with //.

SLASH_STAR


Represents a multi-line comment enclosed in /* */.

UNKNOWN


Represents an unknown or unrecognized comment type.