interface Comment {
    removed: boolean;
    text: string;
    after(content, options?): Comment;
    before(content, options?): Comment;
    remove(): Comment;
    replace(content, options?): Comment;
}

Properties

removed: boolean
text: string

Methods