cli-stash
Version:
CLI application to manage and work with Atlassian Stash. Work with your Stash project and repositories from Command lines.
13 lines (12 loc) • 347 B
TypeScript
import { BasicAuth } from "stash-connector";
import { Instance } from "../types";
export declare class Config {
private folderPath;
instances: {
[key: string]: Instance;
};
constructor(folderPath: string, load?: boolean);
getConnectorOptions(alias: string): BasicAuth;
load(): void;
save(): void;
}