backport
Version:
A CLI tool that automates the process of backporting commits
12 lines (11 loc) • 354 B
TypeScript
export declare function getReviewersFromPullRequests({ options, pullNumbers, }: {
options: {
githubApiBaseUrlV3?: string;
repoName: string;
repoOwner: string;
accessToken: string;
interactive: boolean;
authenticatedUsername: string;
};
pullNumbers: number[];
}): Promise<string[] | undefined>;