GitHub Fork Event
GitHub fork webhook payload with forkee repository details.
github
Install
$ npx shadcn@latest add @open-types/github-fork-event
Dependencies
Source
import type {
GitHubUser,
GitHubRepository,
GitHubOrganization,
} from "./github-shared";
export interface GitHubForkEvent {
forkee: GitHubRepository;
repository: GitHubRepository;
sender: GitHubUser;
organization?: GitHubOrganization;
}
import type {
GitHubUser,
GitHubRepository,
GitHubOrganization,
} from "./github-shared";
export interface GitHubForkEvent {
forkee: GitHubRepository;
repository: GitHubRepository;
sender: GitHubUser;
organization?: GitHubOrganization;
}