interface Author {
    approved: boolean;
    role:
        | undefined
        | "PARTICIPANT"
        | "REVIEWER"
        | "AUTHOR";
    status:
        | undefined
        | "APPROVED"
        | "NEEDS_WORK"
        | "UNAPPROVED";
    user: pr.commentEdited.Actor;
}

Properties

approved: boolean
role:
    | undefined
    | "PARTICIPANT"
    | "REVIEWER"
    | "AUTHOR"
status:
    | undefined
    | "APPROVED"
    | "NEEDS_WORK"
    | "UNAPPROVED"