vibetunnel
Version:
Terminal sharing server with web interface - supports macOS, Linux, and headless environments
19 lines (18 loc) • 475 B
TypeScript
/**
* Install Git hooks for VibeTunnel follow mode
*/
export declare function installGitHooks(repoPath: string): Promise<{
success: boolean;
errors?: string[];
}>;
/**
* Uninstall Git hooks for VibeTunnel follow mode
*/
export declare function uninstallGitHooks(repoPath: string): Promise<{
success: boolean;
errors?: string[];
}>;
/**
* Check if Git hooks are installed
*/
export declare function areHooksInstalled(repoPath: string): Promise<boolean>;