mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-06 05:51:15 +08:00
11 lines
376 B
TypeScript
11 lines
376 B
TypeScript
/**
|
|
* Browser doctor API barrel. It exposes legacy profile cleanup and Chrome MCP
|
|
* readiness helpers for OpenClaw doctor.
|
|
*/
|
|
export {
|
|
detectLegacyClawdBrowserProfileResidue,
|
|
maybeArchiveLegacyClawdBrowserProfileResidue,
|
|
noteChromeMcpBrowserReadiness,
|
|
} from "./src/doctor-browser.js";
|
|
export type { LegacyClawdBrowserProfileResidue } from "./src/doctor-browser.js";
|