danger
Version:
Unit tests for Team Culture
12 lines (11 loc) • 318 B
TypeScript
import { Env, CISource } from "../ci_source";
export declare class GitLabCI implements CISource {
private readonly env;
constructor(env: Env);
get name(): string;
get isCI(): boolean;
get isPR(): boolean;
get pullRequestID(): string;
get repoSlug(): string;
get commitHash(): string;
}