mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-23 08:58:09 +00:00
11 lines
341 B
TypeScript
11 lines
341 B
TypeScript
/**
|
|
* Browser control-auth API barrel. It exposes auth generation and validation
|
|
* helpers for the browser control server.
|
|
*/
|
|
export type { BrowserControlAuth } from "./src/browser/control-auth.js";
|
|
export {
|
|
ensureBrowserControlAuth,
|
|
resolveBrowserControlAuth,
|
|
shouldAutoGenerateBrowserAuth,
|
|
} from "./src/browser/control-auth.js";
|