import { RunnerDirsCollection } from "../githubServiceFiles/RunnerDirsCollection"; import { BaseRunnerDirsInterface } from "./BaseRunnerDirsInterface"; import { FakeFilesCollection } from "../githubServiceFiles/FakeFilesCollection"; import { EnvStore } from "../runOptions/EnvStore"; export interface BaseRunMilieuComponentsFactoryInterface { prepareRunnerDirs(): RunnerDirsCollection; prepareFiles(): FakeFilesCollection; prepareEnv(fakeFiles: FakeFilesCollection, runnerDirs: RunnerDirsCollection): EnvStore; } //# sourceMappingURL=BaseRunMilieuComponentsFactoryInterface.d.ts.map