import { RepoEvent } from "../collecting/collectRepoEvents.js"; //#region src/collect/processing/repoEventIsPullRequestReviewEvent.d.ts type PullRequestReviewEvent = RepoEvent & { issue: { number: number; }; }; declare function repoEventIsPullRequestReviewEvent(repoEvent: Pick): repoEvent is PullRequestReviewEvent; //#endregion export { PullRequestReviewEvent, repoEventIsPullRequestReviewEvent }; //# sourceMappingURL=repoEventIsPullRequestReviewEvent.d.ts.map