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. Attributes: DOUBLE_SLASH (str): Represents a single-line comment starting with //. SLASH_STAR (str): Represents a multi-line comment enclosed in / */. UNKNOWN (str): Represents an unknown or unrecognized comment type.
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.
Was this page helpful?