UNPKG

claudekit

Version:

CLI tools for Claude Code development workflow

19 lines 687 B
export interface CodebaseMapConfig { include?: string[]; exclude?: string[]; format?: 'auto' | 'json' | 'dsl' | 'graph' | 'markdown' | 'tree' | string; } export interface CodebaseMapOptions { include?: string[] | undefined; exclude?: string[] | undefined; format?: string | undefined; projectRoot: string; } export interface CodebaseMapResult { success: boolean; output?: string; error?: Error; } export declare function generateCodebaseMap(options: CodebaseMapOptions): Promise<CodebaseMapResult>; export declare function updateCodebaseMap(filePath: string, projectRoot: string): Promise<boolean>; //# sourceMappingURL=codebase-map-utils.d.ts.map