UNPKG

fake-it-til-you-git

Version:

A modern CLI tool to generate fake Git commit history for your GitHub/GitLab profile

12 lines 438 B
import { type CliOptions } from './config.js'; /** * Enhanced error handler with better context and cleanup */ export declare class FakeGitError extends Error { code: string; recoverable: boolean; context?: any | undefined; constructor(message: string, code: string, recoverable?: boolean, context?: any | undefined); } export declare function main(options: CliOptions): Promise<void>; //# sourceMappingURL=main.d.ts.map