UNPKG

@memory-bank/mcp

Version:

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

23 lines 457 B
/** * Rules result type */ export type RulesResult = { content: Record<string, unknown>; language: string; }; /** * Context request type */ export type ContextRequest = { branch?: string; language: string; }; /** * Context result type */ export type ContextResult = { rules?: RulesResult; branchMemory?: Record<string, string | object>; globalMemory?: Record<string, string | object>; }; //# sourceMappingURL=types.d.ts.map