@khulnasoft.com/dev-tools
Version:
KhulnaSoft Visual CMS Devtools
10 lines (9 loc) • 311 B
TypeScript
import { type InitConfig } from "./InitStateMachine";
import type { InitState } from "$/ai-utils";
export declare const attemptDryRunBackupGit: (initConfig: InitConfig, realInitState: InitState) => Promise<{
success: boolean;
error: string;
} | {
success: boolean;
error?: undefined;
} | null>;