git-tweezers
Version:
Advanced git staging tool with hunk and line-level control
10 lines (9 loc) • 348 B
TypeScript
import type { HunkInfo } from '../types/hunk-info.js';
export declare class StagingError extends Error {
readonly remainingHunks?: HunkInfo[] | undefined;
constructor(message: string, remainingHunks?: HunkInfo[] | undefined);
/**
* Format error message with remaining hunks information
*/
getFormattedMessage(): string;
}