47 lines
1.2 KiB
TypeScript
47 lines
1.2 KiB
TypeScript
export type {
|
|
CreateSandboxBackendParams,
|
|
RemoteShellSandboxHandle,
|
|
RunSshSandboxCommandParams,
|
|
SandboxBackendCommandParams,
|
|
SandboxBackendCommandResult,
|
|
SandboxBackendExecSpec,
|
|
SandboxBackendFactory,
|
|
SandboxFsBridge,
|
|
SandboxFsStat,
|
|
SandboxBackendHandle,
|
|
SandboxBackendId,
|
|
SandboxBackendManager,
|
|
SandboxBackendRegistration,
|
|
SandboxBackendRuntimeInfo,
|
|
SandboxContext,
|
|
SandboxResolvedPath,
|
|
SandboxSshConfig,
|
|
SshSandboxSession,
|
|
SshSandboxSettings,
|
|
} from "../agents/sandbox.js";
|
|
export type { OpenClawConfig } from "../config/config.js";
|
|
|
|
export {
|
|
buildExecRemoteCommand,
|
|
buildRemoteCommand,
|
|
buildSshSandboxArgv,
|
|
createRemoteShellSandboxFsBridge,
|
|
createSshSandboxSessionFromConfigText,
|
|
createSshSandboxSessionFromSettings,
|
|
disposeSshSandboxSession,
|
|
getSandboxBackendFactory,
|
|
getSandboxBackendManager,
|
|
registerSandboxBackend,
|
|
requireSandboxBackendFactory,
|
|
runSshSandboxCommand,
|
|
shellEscape,
|
|
uploadDirectoryToSshTarget,
|
|
} from "../agents/sandbox.js";
|
|
|
|
export {
|
|
runPluginCommandWithTimeout,
|
|
type PluginCommandRunOptions,
|
|
type PluginCommandRunResult,
|
|
} from "./run-command.js";
|
|
export { resolvePreferredOpenClawTmpDir } from "../infra/tmp-openclaw-dir.js";
|