Typescript
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.