import { Warning } from "@microsoft/teamsfx-api"; import { ScaffoldRuntime } from "./scaffold"; import { StepRegistry } from "./runtimeRegistry"; /** A composed on-disk runtime: the two ports `scaffold` needs, plus the output root. */ export interface RealRuntime extends ScaffoldRuntime { /** The output directory every write/read is contained under. */ rootDir: string; } /** Build an on-disk runtime rooted at `rootDir`. */ export declare function createRealRuntime(rootDir: string, flagReader?: (name: string) => boolean, stepRegistry?: StepRegistry, warningSink?: (warning: Warning) => void): RealRuntime; //# sourceMappingURL=realRuntime.d.ts.map