cli-stash
Version:
CLI application to manage and work with Atlassian Stash. Work with your Stash project and repositories from Command lines.
18 lines (17 loc) • 400 B
TypeScript
export declare class StashCLIResponse<T> {
status: 0 | -1;
message?: string;
result?: T;
error?: StashCLIError;
}
export declare class StashCLIError {
statusCode?: number;
status?: string;
statusText?: string;
errors?: StashCLIErrorData[];
}
export interface StashCLIErrorData {
context?: string;
message: string;
exceptionName: string;
}