/** * `slowcook serve mock ` — Phase 2 implementation. * * The mock profile runs the consumer's `mock/` package as a vite-dev * server on a shared box. See `dev.ts` header for the broader pattern. * * 0.19.7 (sc#173): same refactor as dev.ts — emit ShellCommand[] so * runCommands() can actually execute (including ssh-wrapping for the * remote case); support `compose_files` multi-`-f`; suppress `--build` * for `bind-mount-source`. */ import type { ProfileConfig, ServeConfig } from "./config.js"; import type { DevVerbResult } from "./dev.js"; export interface MockVerbArgs { verb: string; branch?: string; service?: string; follow?: boolean; prune?: boolean; repoRoot: string; dryRun?: boolean; } export declare function planServeMock(args: MockVerbArgs, _config: ServeConfig, profile: ProfileConfig): DevVerbResult; //# sourceMappingURL=mock.d.ts.map