UNPKG

buroventures-harald-code

Version:

Harald Code - AI-powered coding assistant CLI

14 lines (13 loc) 413 B
/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import { SandboxConfig } from 'buroventures-harald-code-core'; import { Settings } from './settings.js'; interface SandboxCliArgs { sandbox?: boolean | string; sandboxImage?: string; } export declare function loadSandboxConfig(settings: Settings, argv: SandboxCliArgs): Promise<SandboxConfig | undefined>; export {};