@memory-bank/mcp
Version:
Memory-enabled Co-Pilot (MCP) server for managing project documentation and context
20 lines • 716 B
TypeScript
/**
* Parse a date string safely, returning a valid Date object
* @param dateInput Date string or Date object
* @returns Date object
*/
export declare const parseDateSafely: (dateInput: string | Date) => Date;
/**
* Extract tags from document content
* @param content Document content
* @returns Array of tags
*/
export declare const extractTags: (content: string) => string[];
/**
* Extract a section from markdown content
* @param content Markdown content
* @param sectionHeader Section header
* @returns Section content or undefined if section not found
*/
export declare const extractSectionContent: (content: string, sectionHeader: string) => string | undefined;
//# sourceMappingURL=index.d.ts.map