/** * Diff-based scanning (v4.5). * * Identifies files changed since a given commit and returns only * those paths for scanning, enabling incremental CI integration. */ /** * Get list of files changed since a given commit. */ export declare function getChangedFiles(dir: string, sinceCommit: string): string[]; /** * Get list of files changed in the working tree (uncommitted). */ export declare function getUncommittedFiles(dir: string): string[]; //# sourceMappingURL=diff-scanner.d.ts.map