import type { ActivityReason } from "../types/ActivityReason"; import type { User } from "./User"; export interface PullRequestCommentNotification { readonly id: number; readonly alreadyRead: boolean; readonly reason: ActivityReason; readonly user: User; readonly resourceAlreadyRead: boolean; }