UNPKG

@codechecks/client

Version:

Open source platform for code review automation

13 lines (12 loc) 435 B
import { Env, CiProvider } from "./types"; export declare function parseRepositorySlug(repoUrl: string): string; export declare class BuildKite implements CiProvider { private readonly env; constructor(env: Env); isCurrentlyRunning(): boolean; getPullRequestID(): number | undefined; getCurrentSha(): string; isFork(): boolean; getProjectSlug(): string; supportsSpeculativeBranchSelection(): boolean; }