interface Comment {
    loc?: null | SourceLocation;
    range?: [number, number];
    type: "Block" | "Line";
    value: string;
}

Hierarchy (View Summary)

Properties

Properties

loc?: null | SourceLocation
range?: [number, number]
type: "Block" | "Line"
value: string