mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-06 05:51:15 +08:00
14 lines
424 B
TypeScript
14 lines
424 B
TypeScript
// Lobster API module exposes the plugin public contract.
|
|
export { definePluginEntry } from "openclaw/plugin-sdk/core";
|
|
export type {
|
|
AnyAgentTool,
|
|
OpenClawPluginApi,
|
|
OpenClawPluginToolContext,
|
|
OpenClawPluginToolFactory,
|
|
} from "openclaw/plugin-sdk/core";
|
|
export {
|
|
applyWindowsSpawnProgramPolicy,
|
|
materializeWindowsSpawnProgram,
|
|
resolveWindowsSpawnProgramCandidate,
|
|
} from "openclaw/plugin-sdk/windows-spawn";
|