UNPKG

@memory-bank/mcp

Version:

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

18 lines 328 B
/** * Data Transfer Object for branch information */ export interface BranchInfoDTO { /** * Branch name */ name: string; /** * Display name (without prefix) */ displayName: string; /** * Branch type */ type: 'feature' | 'fix'; } //# sourceMappingURL=BranchInfoDTO.d.ts.map