codevault
Version:
AI-powered semantic code search via Model Context Protocol
13 lines • 721 B
TypeScript
import type { SynthesisResult } from './synthesizer.js';
export interface FormattingOptions {
includeMetadata?: boolean;
includeStats?: boolean;
colorize?: boolean;
}
export declare function formatSynthesisResult(result: SynthesisResult, options?: FormattingOptions): string;
export declare function formatStreamingChunk(chunk: string): string;
export declare function extractCitations(markdown: string): string[];
export declare function addCitationFooter(markdown: string): string;
export declare function formatErrorMessage(error: string, query: string): string;
export declare function formatNoResultsMessage(query: string, queriesUsed?: string[]): string;
//# sourceMappingURL=markdown-formatter.d.ts.map