UNPKG

@codechecks/client

Version:

Open source platform for code review automation

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