@heroku-cli/plugin-pipelines
Version:
@heroku-cli/plugin-pipelines ============================
10 lines (9 loc) • 365 B
TypeScript
export declare const STAGING_APP_INDICATOR = "-staging";
declare type ValidatedResponse = [true] | [false, string];
export declare function pipelineName(name: any): ValidatedResponse;
export declare function repoName(repo: any): ValidatedResponse;
export declare function nameAndRepo({ name, repo }: {
name?: string;
repo?: string;
}): string[];
export {};