Files
openclaw/src/config/types.node-host.ts

12 lines
359 B
TypeScript
Raw Normal View History

2026-01-24 04:19:43 +00:00
export type NodeHostBrowserProxyConfig = {
/** Enable the browser proxy on the node host (default: true). */
enabled?: boolean;
/** Optional allowlist of profile names exposed via the proxy. */
allowProfiles?: string[];
};
export type NodeHostConfig = {
/** Browser proxy settings for node hosts. */
browserProxy?: NodeHostBrowserProxyConfig;
};