packfs-core
Version:
Semantic filesystem operations for LLM agent frameworks with natural language understanding. See LLM_AGENT_GUIDE.md for copy-paste examples.
10 lines • 343 B
TypeScript
/**
* Text content processor
*/
import type { ContentProcessor } from './types.js';
export declare class TextProcessor implements ContentProcessor {
private readonly textExtensions;
process(content: string | Buffer, _filename?: string): Promise<string>;
canProcess(filename: string): boolean;
}
//# sourceMappingURL=text.d.ts.map