@git.zone/cli
Version:
A comprehensive CLI tool for enhancing and managing local development workflows with gitzone utilities, focusing on project setup, version control, code formatting, and template management.
27 lines (26 loc) • 845 B
TypeScript
export declare let run: (options?: {
write?: boolean;
dryRun?: boolean;
yes?: boolean;
planOnly?: boolean;
savePlan?: string;
fromPlan?: string;
detailed?: boolean;
interactive?: boolean;
parallel?: boolean;
verbose?: boolean;
diff?: boolean;
}) => Promise<any>;
export declare const handleRollback: (operationId?: string) => Promise<void>;
export declare const handleListBackups: () => Promise<void>;
export declare const handleCleanBackups: () => Promise<void>;
import type { ICheckResult } from './interfaces.format.js';
export type { ICheckResult };
/**
* Run a single formatter by name (for use by other modules)
*/
export declare const runFormatter: (formatterName: string, options?: {
silent?: boolean;
checkOnly?: boolean;
showDiff?: boolean;
}) => Promise<ICheckResult | void>;