UNPKG

@jameslnewell/buildkite-pipelines

Version:
19 lines (18 loc) 444 B
export interface BranchFilterBuilder { getBranches(): ReadonlyArray<string>; /** * @deprecated Use .addBranch() instead */ branch(pattern: string): this; addBranch(pattern: string): this; } export declare class BranchFilterHelper { #private; getBranches(): ReadonlyArray<string>; addBranch(pattern: string): void; build(): { branches: string[]; } | { branches?: undefined; }; }