mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-12 21:53:00 -06:00
deb682abfe
* refactor(plugins): consolidate extension runtime helpers * fix(ci): satisfy extension type and lint checks * chore(plugin-sdk): regenerate API baseline for #118509
25 lines
749 B
TypeScript
25 lines
749 B
TypeScript
/** Runtime API exports for Canvas plugin host and CLI helpers. */
|
|
export {
|
|
canvasConfigSchema,
|
|
isCanvasHostEnabled,
|
|
isCanvasPluginEnabled,
|
|
parseCanvasPluginConfig,
|
|
resolveCanvasHostConfig,
|
|
type CanvasHostConfig,
|
|
type CanvasPluginConfig,
|
|
} from "./src/config.js";
|
|
export {
|
|
A2UI_PATH,
|
|
CANVAS_HOST_PATH,
|
|
CANVAS_WS_PATH,
|
|
handleA2uiHttpRequest,
|
|
} from "./src/host/a2ui.js";
|
|
export { createCanvasHostHandler, type CanvasHostHandler } from "./src/host/server.js";
|
|
export {
|
|
registerNodesCanvasCommands,
|
|
type CanvasCliDependencies,
|
|
type CanvasNodesRpcOpts,
|
|
} from "./src/cli.js";
|
|
export { canvasSnapshotTempPath, parseCanvasSnapshotPayload } from "./src/cli-helpers.js";
|
|
export { resolveCanvasHostUrl } from "./src/host-url.js";
|