Type Alias ParsedLeadingComments
type ParsedLeadingComments = {
comments: string[];
lastComment: string;
lastParsed: comment_parser.Block;
parsed: comment_parser.Block[];
}
comments: string[];
lastComment: string;
lastParsed: comment_parser.Block;
parsed: comment_parser.Block[];
}
Index
Properties
Properties
comments
comments: string[]
- All raw JSDoc comment blocks.
lastComment
lastComment: string
- Last raw JSDoc comment block before node.
lastParsed
lastParsed: comment_parser.Block
- Last parsed leading JSDoc comment block before node.
parsed
parsed: comment_parser.Block[]
- All parsed JSDoc comment blocks.
Defines all leading JSDoc comments for a Typescript compiler node.