interface CommentBlock {
    end?: number;
    ignore?: boolean;
    loc?: SourceLocation;
    start?: number;
    type: "CommentBlock";
    value: string;
}

Hierarchy (view full)

Properties

end?: number
ignore?: boolean
start?: number
type: "CommentBlock"
value: string