vibe-rules
Version:
A utility for managing Cursor rules, Windsurf rules, and other AI prompts
11 lines (10 loc) • 302 B
TypeScript
interface ConvertOptions {
target?: string;
global?: boolean;
debug?: boolean;
}
/**
* Main handler for the convert command
*/
export declare function convertCommandAction(sourceFormat: string, targetFormat: string, sourcePath: string, options: ConvertOptions): Promise<void>;
export {};