mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-06 05:51:15 +08:00
20 lines
602 B
TypeScript
20 lines
602 B
TypeScript
/**
|
|
* Browser profile API barrel. It exposes browser profile defaults and config
|
|
* resolution helpers for setup and runtime paths.
|
|
*/
|
|
export {
|
|
DEFAULT_AI_SNAPSHOT_MAX_CHARS,
|
|
DEFAULT_BROWSER_ACTION_TIMEOUT_MS,
|
|
DEFAULT_BROWSER_DEFAULT_PROFILE_NAME,
|
|
DEFAULT_BROWSER_EVALUATE_ENABLED,
|
|
DEFAULT_OPENCLAW_BROWSER_COLOR,
|
|
DEFAULT_OPENCLAW_BROWSER_ENABLED,
|
|
DEFAULT_OPENCLAW_BROWSER_PROFILE_NAME,
|
|
DEFAULT_UPLOAD_DIR,
|
|
resolveBrowserConfig,
|
|
resolveProfile,
|
|
type ResolvedBrowserConfig,
|
|
type ResolvedBrowserProfile,
|
|
type ResolvedBrowserTabCleanupConfig,
|
|
} from "./src/browser/config.js";
|