mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-25 12:49:32 +00:00
11 lines
345 B
TypeScript
11 lines
345 B
TypeScript
/**
|
|
* Browser host-inspection API barrel. It exposes Chrome executable discovery
|
|
* and version parsing helpers.
|
|
*/
|
|
export type { BrowserExecutable } from "./src/browser/chrome.executables.js";
|
|
export {
|
|
parseBrowserMajorVersion,
|
|
readBrowserVersion,
|
|
resolveGoogleChromeExecutableForPlatform,
|
|
} from "./src/browser/chrome.executables.js";
|