UNPKG

repomix

Version:

A tool to pack repository contents to single file for AI consumption

13 lines 737 B
import type { RepomixProgressCallback } from '../../shared/types.js'; import type { RawFile } from '../file/fileTypes.js'; import type { GitDiffResult } from '../git/gitDiffHandle.js'; import type { SecurityCheckType } from './workers/securityCheckWorker.js'; export interface SuspiciousFileResult { filePath: string; messages: string[]; type: SecurityCheckType; } export declare const runSecurityCheck: (rawFiles: RawFile[], progressCallback?: RepomixProgressCallback, gitDiffResult?: GitDiffResult, deps?: { initTaskRunner: <T, R>(numOfTasks: number, workerPath: string) => import("../../shared/processConcurrency.js").TaskRunner<T, R>; }) => Promise<SuspiciousFileResult[]>; //# sourceMappingURL=securityCheck.d.ts.map