/** * BuildDetector — identifies build tool invocations from shell commands * and parses results from stdout. */ export interface BuildResult { tool: string; errorsCount: number; warningsCount: number; } export declare class BuildDetector { /** * Try to detect a build invocation from a shell command and its output. * Returns null if this doesn't look like a build. */ detect(cmd: string, stdout: string, stderr: string, _exitCode: number): BuildResult | null; } //# sourceMappingURL=BuildDetector.d.ts.map