import { AbstractRunResult } from "../../../runResult/AbstractRunResult"; import { ParsedCommandsInterface } from "../../../runResult/ParsedCommandsInterface"; import { RunnerDirInterface } from "../../../githubServiceFiles/runnerDir/RunnerDirInterface"; import { SpawnAsyncResult } from "../../../utils/spawnAsync"; import { RunnerWarning } from "../../../runResult/warnings/RunnerWarning"; export declare class JsFileRunResult extends AbstractRunResult { readonly spawnResult: SpawnAsyncResult; constructor(commands: ParsedCommandsInterface, error: Error | any | undefined, exitCode: number | undefined, stdout: string | undefined, stderr: string | undefined, durationMs: number, tempDir: RunnerDirInterface, workspaceDir: RunnerDirInterface, runnerWarnings: RunnerWarning[], spawnResult: SpawnAsyncResult); } //# sourceMappingURL=JsFileRunResult.d.ts.map