/** * Coder Remote Execution * * ExecFn implementation using `coder ssh` for remote command execution. * Follows the same base64-encoding pattern as codespaces/cli.ts to avoid * quoting/escaping issues when passing commands through SSH. * * @see s-9uap - sudopod-coder-sdk specification */ import type { ExecFn } from '../provider/types.js'; export interface CoderExecConfig { coderUrl: string; coderToken: string; } /** * Create an ExecFn bound to a specific Coder instance. * The returned function is compatible with all shared setup/manifest functions. */ export declare function createCoderExecFn(config: CoderExecConfig): ExecFn; //# sourceMappingURL=exec.d.ts.map