UNPKG

@memory-bank/mcp

Version:

Memory-enabled Co-Pilot (MCP) server for managing project documentation and context

12 lines 386 B
/** * Interface for Git related services */ export interface IGitService { /** * Gets the current Git branch name. * @returns Promise resolving to the current branch name. * @throws Error if the current branch name cannot be determined (e.g., not in a Git repository). */ getCurrentBranchName(): Promise<string>; } //# sourceMappingURL=IGitService.d.ts.map