use-multiple-gits
Version:
CLI tool to manage multiple git configurations (user.name, user.email, SSH keys) with easy switching between identities
18 lines • 651 B
TypeScript
export declare class MultiGitError extends Error {
code?: string | undefined;
constructor(message: string, code?: string | undefined);
}
export declare class ConfigNotFoundError extends MultiGitError {
constructor(name: string);
}
export declare class SSHKeyNotFoundError extends MultiGitError {
constructor(keyPath: string);
}
export declare class InvalidConfigError extends MultiGitError {
constructor(message: string);
}
export declare class FileSystemError extends MultiGitError {
originalError?: Error | undefined;
constructor(message: string, originalError?: Error | undefined);
}
//# sourceMappingURL=errors.d.ts.map