renovate
Version:
Automated dependency updates. Flexible so you don't need to be.
10 lines (9 loc) • 434 B
TypeScript
import { GithubHttp } from '../../../util/http/github';
import type { MergePRConfig } from '../types';
import type { GhPr, GhRestPr } from './types';
export declare const githubApi: GithubHttp;
/**
* @see https://docs.github.com/en/rest/reference/pulls#list-pull-requests
*/
export declare function coerceRestPr(pr: GhRestPr): GhPr;
export declare function mapMergeStartegy(strategy: MergePRConfig['strategy']): string | undefined;