mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-06 05:51:15 +08:00
13 lines
440 B
TypeScript
13 lines
440 B
TypeScript
// Line API module exposes the plugin public contract.
|
|
export type {
|
|
ChannelAccountSnapshot,
|
|
ChannelPlugin,
|
|
OpenClawConfig,
|
|
OpenClawPluginApi,
|
|
PluginRuntime,
|
|
} from "openclaw/plugin-sdk/core";
|
|
export type { ReplyPayload } from "openclaw/plugin-sdk/reply-runtime";
|
|
export type { ResolvedLineAccount } from "./runtime-api.js";
|
|
export { linePlugin } from "./src/channel.js";
|
|
export { lineSetupPlugin } from "./src/channel.setup.js";
|