@bobmatnyc/ai-code-review
Version:
A TypeScript-based tool for automated code reviews using AI models from Google Gemini, Anthropic Claude, and OpenRouter
20 lines (19 loc) • 632 B
TypeScript
/**
* @fileoverview Command-line argument parser for GitHub Projects sync.
*
* This module is responsible for parsing and validating command-line arguments
* for the GitHub Projects sync command using the yargs library.
*/
/**
* GitHub Projects sync options
*/
export interface GitHubProjectsSyncOptions {
direction?: 'to-github' | 'from-github';
projectPath?: string;
descriptionOnly?: boolean;
}
/**
* Parse command-line arguments for GitHub Projects sync
* @returns Parsed arguments as GitHubProjectsSyncOptions
*/
export declare function parseGitHubProjectsArguments(): Promise<GitHubProjectsSyncOptions>;