Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | import ECommentType from "./ECommentType";
/**
* Represents a comment extracted from source (ADR-043)
*/
interface IComment {
/** Comment type */
type: ECommentType;
/** Raw text including comment markers */
raw: string;
/** Text content without markers */
content: string;
/** Line number (1-based) */
line: number;
/** Column (0-based) */
column: number;
/** Token index for positioning relative to code */
tokenIndex: number;
}
export default IComment;
|