github.issuecomment
Home > @runlightyear/github > IssueComment
IssueComment type
Documentation: https://docs.github.com/webhooks-and-events/webhooks/webhook-events-and-payloads\#issue\_comment
Signature:declare type IssueComment = {
authorAssociation: "COLLABORATOR" | "CONTRIBUTOR" | "FIRST_TIMER" | "FIRST_TIME_CONTRIBUTOR" | "MANNEQUIN" | "MEMBER" | "NONE" | "OWNER";
body: string;
createdAt: string;
htmlUrl: string;
id: number;
issueUrl: string;
nodeId: string;
performedViaGithubApp: object;
reactions: Reactions;
updatedAt: string;
url: string;
user: User;
};