@jjdenhertog/ai-driven-development
Version:
AI-driven development workflow with learning capabilities for Claude
12 lines • 438 B
TypeScript
export type FetchResult = {
success: boolean;
error?: string;
};
/**
* Fetch latest changes from origin
* @param branch - Optional specific branch to fetch (if not provided, fetches all branches)
* @param cwd - Optional working directory
* @returns FetchResult indicating success or failure
*/
export declare function fetchOrigin(branch?: string, cwd?: string): Promise<FetchResult>;
//# sourceMappingURL=fetchOrigin.d.ts.map