@bobmatnyc/ai-code-review
Version:
A TypeScript-based tool for automated code reviews using AI models from Google Gemini, Anthropic Claude, and OpenRouter
13 lines (12 loc) • 451 B
TypeScript
/**
* @fileoverview Utility to generate tree structure from file paths
*
* This module provides functions to convert a list of file paths into a
* hierarchical tree structure for display in a markdown file.
*/
/**
* Generate a markdown tree representation of file paths
* @param filePaths Array of file paths
* @returns Markdown string representing the tree structure
*/
export declare function generateFileTree(filePaths: string[]): string;