@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) • 431 B
TypeScript
/**
* @fileoverview Unused dependency detection for AI Code Review
*
* This module provides functionality to detect unused dependencies
* using tools like depcheck and provides actionable information.
*/
/**
* Find unused dependencies using depcheck
* @param projectPath Path to the project
* @returns Array of unused dependencies
*/
export declare function findUnusedDependencies(projectPath: string): Promise<string[]>;