UNPKG
@memory-bank/mcp
Version:
latest (3.0.0)
3.0.0
2.4.1
2.4.0
2.3.5
2.3.4
2.3.3
2.3.2
2.3.1
2.3.0
Memory-enabled Co-Pilot (MCP) server for managing project documentation and context
@memory-bank/mcp
/
dist
/
application
/
dtos
/
BranchInfoDTO.d.ts
18 lines
•
328 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/** * 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