metacoding
Version:
Cross-agent workflow skill for modern coding agents with gated planning, testing, verification, and handoff defaults
11 lines • 450 B
TypeScript
import { BackupResult } from '../types';
export declare class BackupService {
private readonly backupBaseDir;
createBackup(targets?: string[]): Promise<BackupResult>;
private generateTimestamp;
private listAllFiles;
getFileHash(filePath: string): Promise<string | null>;
hasFileChanged(filePath: string, originalContent: string): Promise<boolean>;
cleanupOldBackups(): Promise<void>;
}
//# sourceMappingURL=backup.d.ts.map