UNPKG

@memory-bank/mcp

Version:

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

22 lines 389 B
/** * Data Transfer Object for memory document */ export interface DocumentDTO { /** * Document path */ path: string; /** * Document content */ content: string | object; /** * Document tags */ tags: string[]; /** * Last modified date (ISO string) */ lastModified: string; } //# sourceMappingURL=DocumentDTO.d.ts.map